使用UIAlertAction增加/减少UILabel

时间:2015-05-05 18:26:27

标签: ios xcode swift

我正在开发一个应用程序,我很好奇如何创建一个响应通知事件的计数器。我有一个弹出的通知,并问你一个问题。您的选项是“解锁”和“取消”。我想要发生的是当我点击“解锁”时屏幕上的UILabel会减少。我有一个标签的IBOutlet设置,以及一个计数器。

var counter = 0
@IBOutlet weak var homeCounter: UILabel!


var alert = UIAlertController(title: "Confirm?", message: "", preferredStyle: UIAlertControllerStyle.Alert)
alert.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Default, handler: nil))
alert.addAction(UIAlertAction(title: "Unlock", style:UIAlertActionStyle.Default, handler:nil))
self.presentViewController(alert, animated: true, completion: nil)

1 个答案:

答案 0 :(得分:0)

您应该为解锁操作添加处理程序,如下所示:

alert.addAction(UIAlertAction(title: "Unlock", style: UIAlertActionStyle.Default, handler: {(alert: UIAlertAction!) in 
       homeCounter.text = ((homeCounter.text as NSString).integerValue + 1).description
       // or
       homeCounter.text = (counter++).description
}))