如何在Swift的子视图类中创建警报?

如何在Swift的子视图类中创建警报?,第1张

如何在Swift的子视图类中创建警报

有几种方法可以使

UIViewController
您抓住自己的生活
UIView

  1. 您可以将任何视图控制器作为 委托 来显示警报;
  2. 您可以将视图控制器的 引用 传递给您的视图;和
  3. 通常,您始终
    rootViewController
    可以在代码中的任何位置进行抓取。

dismissViewControllerAnimated(_: completion:)
当您以后想要关闭警报时,需要在同一视图控制器上调用。

因此,我将针对您的情况做一个如此快速的解决方案:

func move() {    if !gameBoard.checkNextMoveExist() {        let rootViewController: UIViewController = UIApplication.sharedApplication().windows[0].rootViewController        var alert = UIalertController(title: "Game Over", message: nil, preferredStyle: UIalertControllerStyle.alert)        alert.addAction(UIalertAction(title: "Take Me Back", style: UIalertActionStyle.Cancel, handler: {(action: UIalertAction!) in rootViewController.dismissViewControllerAnimated(true, completion: nil) println("Taking user back to the game without restarting")        }))        alert.addAction(UIalertAction(title: "New Game", style: UIalertActionStyle.Destructive, handler: {(action: UIalertAction!) in rootViewController.dismissViewControllerAnimated(true, completion: nil) println("Starting a new game") self.restartGame()        }))        rootViewController.presentViewController(alert, animated: true, completion: nil)    }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4936063.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-13
下一篇 2022-11-13

发表评论

登录后才能评论

评论列表(0条)

保存