我希望在用户触摸按钮 (UIControlEventTouchUpInside) 时收到信号。如何将观察者添加到 UIButton?
Best Answer-推荐答案 strong>
查看 UIControl 的文档.
[myButton addTarget:self
actionselector(touch
forControlEvents:UIControlEventTouchUpInside];
此方法适用于从 UIControl 继承的任何东西(包括但不限于 UIButtons
关于ios - 如何将观察者添加到 UIButton?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/8520515/
|