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