当var达到某个值时,UIAlertController不会显示

时间:2015-06-03 13:47:43

标签: ios uitableview swift var uialertcontroller

我希望在达到3个特定值时显示警告

这是我的代码

func SectionAlert () {

    if (section1score >= 10){

        let alertController: UIAlertController = UIAlertController(title: "Alert", message: "\((section1score as NSNumber).stringValue)", preferredStyle: .Alert)

        let OKAction = UIAlertAction(title: "OK", style: .Default) {
            action -> Void in
        }
        alertController.addAction(OKAction)

        self.presentViewController(alertController, animated: true, completion: nil)

    } else if (section2score >= 10){

    } else if (section3score >= 10){

    }

}

我的应用程序在TableView

中点击单元格时更新每个部分的值

我的代码没有显示任何错误,但是当我的值达到10及以上时,它不会给我提醒

任何想法??

谢谢!

0 个答案:

没有答案