我想添加一個UIAlertView中或控制器時,應用程序首次加載。目前,我在我的viewDidLoad
方法中有此代碼。顯示一個UIAlertView中,當應用程序啓動
let welcomeAlert = UIAlertController(title: "hola", message: "this is a test.", preferredStyle: UIAlertControllerStyle.Alert)
welcomeAlert.addAction(UIAlertAction(title: "ok.", style: UIAlertActionStyle.Default, handler: nil))
self.presentViewController(welcomeAlert, animated: true, completion: nil)
爲什麼警報視圖不顯示?我使用了相同的代碼,但在一個IBAction
的按鈕內,它按預期工作。
這是一個DUP。您無法顯示來自根VC的警報。有關替代方法,請參閱http://stackoverflow.com/questions/10147625/unable-to-get-presentviewcontroller-to-work。 – Laurent