addTarget:action:forControlEvents

来源:互联网 发布:俄罗斯 美国 知乎 编辑:程序博客网 时间:2024/05/16 07:11

- (void)addTarget:(id)target  //动作信息接收方,即处理信息的对象

           action:(SEL)action

 forControlEvents:(UIControlEvents)controlEvents


Parameters

target

The target object—that is, the object to which the action message is sent. If this is nil, the responder chain is searched for an object willing to respond to the action message.

action

A selector identifying an action message. It cannot be NULL.

controlEvents

A bitmask specifying the control events for which the action message is sent. SeeControl Events for bitmask constants.


Discussion

Youmay call this method multiple times, and you may specify multiple target-actionpairs for a particular event. The action message may optionally include thesender and the event as parameters, in that order.

When you call this method, target is not retained.

 

源文档 <https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIControl_Class/#//apple_ref/occ/instm/UIControl/addTarget:action:forControlEvents:


该方法归属于UIControl类,其继承结构如下所示:


  • NSObject
  • UIResponder
  • UIView
  • UIControl
  • UIButton
  • UIDatePicker
  • UIPageControl
  • UIRefreshControl
  • UISegmentedControl
  • UISlider
  • UIStepper
  • UISwitch
  • UITextField


0 0
原创粉丝点击