我希望在达到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及以上时,它不会给我提醒
任何想法??
谢谢!