この機能は私のviewDidLoad
で呼び出されます。エラーは発生しませんが、何も起こりません。私はそれを印刷するように言ったので、間違いなく呼び出されている、それは働いた。ここで迅速にポップアップするのに苦労している
は、アラートのコードです:
func makeAlert()
{
let alertController = UIAlertController(title: "Title", message: "Message", preferredStyle: UIAlertControllerStyle.Alert)
// Create the actions
let okAction = UIAlertAction(title: "OK", style: UIAlertActionStyle.Default) {
UIAlertAction in
NSLog("OK Pressed")
}
let cancelAction = UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel) {
UIAlertAction in
NSLog("Cancel Pressed")
}
// Add the actions
alertController.addAction(okAction)
alertController.addAction(cancelAction)
// Present the controller
self.presentViewController(alertController, animated: true, completion: nil)
はViewDidAppearでmakeAlert()を呼び出すようにしてください。 –
それはとても感謝しました – Steve
うまくいきました。viewDidLoadに多くのコードを入れないと、ビューの遷移に遅れます。 –