Swift:如果按下UIAlertAction,如何进行操作?

时间:2017-05-11 01:54:04

标签: ios swift uialertcontroller uialertaction

我正在尝试创建一个应用,如果分数为3,则应用会显示一条消息,显示“您输了”但在分数标签中保留“3”作为数字,直到按下弹出窗口中的“结束游戏”选项为止,对于新游戏,分数回到0。我是新手,很快就遇到困难,非常感谢任何帮助!我不确定为警报行动制作IBAction是否正确。

    else if rightscorecount == 3 {
        let alert = UIAlertController(title: "Game", message: "You Lose!", preferredStyle: UIAlertControllerStyle.alert)
        alert.addAction(UIAlertAction(title: "End Game", style: UIAlertActionStyle.default) { UIAlertAction in})
       self.present(alert, animated: true, completion: nil)

    }

}
@IBAction func test(sender: UIAlertAction) {

    rightscorecount = 0
    rightscorelabel.text = String(rightscorecount)

}

1 个答案:

答案 0 :(得分:1)

试试这个:

let alertController = UIAlertController.init(title: "Game", message: "You Lose!", preferredStyle: .alert)
    alertController.addAction(UIAlertAction.init(title: "End Game", style: .default, handler: { (action) in
        // Your handler goes here
        self.someFunction()
    }))
    self.present(alertController, animated: true) { 
        // Completion block
    }

你的功能

func someFunction() {
    // Function body goes here
}