有几种方法可以使
UIViewController您抓住自己的生活
UIView。
- 您可以将任何视图控制器作为 委托 来显示警报;
- 您可以将视图控制器的 引用 传递给您的视图;和
- 通常,您始终
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) }}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)