我想通知用户何时将触摸按钮(UIControlEventTouchUpInside)。如何将观察者添加到UIButton?
最佳答案
查看UIControl的文档。
[myButton addTarget:self
action:@selector(touch:)
forControlEvents:UIControlEventTouchUpInside];
此方法适用于从
UIControl
继承的任何内容(包括但不限于UIButtons
:)我想通知用户何时将触摸按钮(UIControlEventTouchUpInside)。如何将观察者添加到UIButton?
最佳答案
查看UIControl的文档。
[myButton addTarget:self
action:@selector(touch:)
forControlEvents:UIControlEventTouchUpInside];
UIControl
继承的任何内容(包括但不限于UIButtons
:)