Skip to content

Instantly share code, notes, and snippets.

@dgilperez
Forked from chsh/appapp_delegate.rb
Last active August 29, 2015 14:20
Show Gist options
  • Save dgilperez/aacd42de6e1d1d2559a1 to your computer and use it in GitHub Desktop.
Save dgilperez/aacd42de6e1d1d2559a1 to your computer and use it in GitHub Desktop.
class AppDelegate
def application(application, didFinishLaunchingWithOptions:launchOptions)
alert = UIAlertView.new
alert.message = t('start')
alert.show
true
end
def t(key)
NSBundle.mainBundle.localizedStringForKey(key, value:nil, table:nil)
end
end
CFBundleName = "English Version";
CFBundleDisplayName = "English";
CFBundleName = "日本語バージョン";
CFBundleDisplayName = "日本語";
"start" = "タップしてね";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment