如何将观察者添加到UIButton

如何将观察者添加到UIButton

我想通知用户何时将触摸按钮(UIControlEventTouchUpInside)。如何将观察者添加到UIButton?

最佳答案

查看UIControl的文档。

[myButton addTarget:self
             action:@selector(touch:)
   forControlEvents:UIControlEventTouchUpInside];

此方法适用于从UIControl继承的任何内容(包括但不限于UIButtons :)

09-06 06:47