一:首先查看一下關於UIControl的定義
NS_CLASS_AVAILABLE_IOS(2_0) @interface UIControl : UIView //控件默認是啟用的YES。是否要禁用控件 @property(nonatomic,getter=isEnabled) BOOL enabled; @property(nonatomic,getter=isSelected) BOOL selected; // 默認值NO 當用戶選中控件時,UIControl類會將其selected屬性設置為YES。子類有時使用這個屬性來讓控件選擇自身,或者來表現不同的行為方式。 @property(nonatomic,getter=isHighlighted) BOOL highlighted; // 默認是NO。這是設置/清除自動當觸摸進入/退出在跟蹤過程中,並清除 //控件如何在垂直方向上布置自身的內容。默認是將內容頂端對其 @property(nonatomic) UIControlContentVerticalAlignment contentVerticalAlignment; //水平對齊方式 @property(nonatomic) UIControlContentHorizontalAlignment contentHorizontalAlignment; //當前所處的UIControlState狀態 只讀 @property(nonatomic,readonly) UIControlState state; //為了判斷當前對象是否正在追蹤觸摸操作,該值如果為YES,則表明正在追蹤。只讀 @property(nonatomic,readonly,getter=isTracking) BOOL tracking; //為了判斷當前觸摸點是否在控件區域類,可以使用touchInside屬性,這是個只讀屬性 @property(nonatomic,readonly,getter=isTouchInside) BOOL touchInside; //跟蹤觸摸事件 - (BOOL)beginTrackingWithTouch:(UITouch *)touch withEvent:(nullable UIEvent *)event; - (BOOL)continueTrackingWithTouch:(UITouch *)touch withEvent:(nullable UIEvent *)event; - (void)endTrackingWithTouch:(nullable UITouch *)touch withEvent:(nullable UIEvent *)event; - (void)cancelTrackingWithEvent:(nullable UIEvent *)event; //增加Target - (void)addTarget:(nullable id)target action:(SEL)action forControlEvents:(UIControlEvents)controlEvents; //移除Target - (void)removeTarget:(nullable id)target action:(nullable SEL)action forControlEvents:(UIControlEvents)controlEvents; //獲取控件對象所有相關的target對象,則可以調用allTargets方法,該方法返回一個集合。集合中可能包含NSNull對象,表示至少有一個nil目標對象 - (NSSet *)allTargets; //獲得最後一個action的所有Events - (UIControlEvents)allControlEvents; //獲取某個target對象及事件相關的所有action,則可以調用 - (nullable NSArray<NSString *> *)actionsForTarget:(nullable id)target forControlEvent:(UIControlEvents)controlEvent; //來將行為消息轉發到UIApplication對象,再由UIApplication對象調用其sendAction:to:fromSender:forEvent:方法來將消息分發到指定的target上,而如果我們沒有指定target,則會將事件分發到響應鏈上第一個想處理消息的對象上。而如果子類想監控或修改這種行為的話,則可以重寫這個方法。 - (void)sendAction:(SEL)action to:(nullable id)target forEvent:(nullable UIEvent *)event; //方法的作用是發送與指定類型相關的所有行為消息 - (void)sendActionsForControlEvents:(UIControlEvents)controlEvents; @end
UIControl是繼承於UIView,當然也是UIResponder的子類。UIControl是諸如UISwitch、UIButton、UISegmentedControl、UISlider、UITextField、UIPageControl等控件的父類,它本身也包含了一些屬性和方法,但是不能直接使用UIControl類,它只是定義了子類都需要使用的方法。UIControl是控件類的基類,它是一個抽象基類,我們不能直接使用UIControl類來實例化控件,它只是為控件子類定義一些通用的接口,並提供一些基礎實現,以在事件發生時,預處理這些消息並將它們發送到指定目標對象上。UIControl對象采用了一種新的事件處理機制,將觸摸事件轉換成簡單操作,這樣可以無需關心用戶訪問控件的具體方式。
知識點1:addTarget:action:forControlEvents
這是UIControl的一個方法,為指定的控件對象添加事件,例如:[controlObjaddTarget:recepientObj action @selector(method) froControlEvents :UIControlEvents]; controlObj是要響應事件的控件對象;參數receientObj是要把消息發送到哪裡,一般是self,通常指實例化控件對象的控制器;action後面是一個選擇器,表示該事件需要響應的方法,事件做什麼其實就寫在這個方法裡面;最後一個是事件類型,表示響應什麼樣的事件。
知識點2:代碼模擬用戶點擊
模擬UI的事件sendActionsForControlEvents,比如模擬用戶點擊事件:
[myBtn sendActionsForControlEvents:UIControlEventTouchUpInside];
實例: - (void)viewDidLoad { // ... [control addTarget:self action:@selector(tapImageControl:) forControlEvents:UIControlEventTouchUpInside]; [control sendActionsForControlEvents:UIControlEventTouchUpInside]; }
可以看到在未點擊控件的情況下,觸發了UIControlEventTouchUpInside事件
知識點3:要刪除一個或多個事件的相應動作,可以使用UIControl類的removeTarget方法。使用nil值就可以將給定事件目標的所有動作刪除:
[ myControl removeTarget:myDelegate action:nil forControlEvents:UIControlEventAllEvents];
知識點4:重寫sendAction的運用
/ ImageControl.m - (void)sendAction:(SEL)action to:(id)target forEvent:(UIEvent *)event { // 將事件傳遞到對象本身來處理 [super sendAction:@selector(handleAction:) to:self forEvent:event]; } - (void)handleAction:(id)sender { NSLog(@"handle Action"); } // ViewController.m - (void)viewDidLoad { [super viewDidLoad]; self.view.backgroundColor = [UIColor whiteColor]; ImageControl *control = [[ImageControl alloc] initWithFrame:(CGRect){50.0f, 100.0f, 200.0f, 300.0f} title:@"This is a demo" image:[UIImage imageNamed:@"demo"]]; // ... [control addTarget:self action:@selector(tapImageControl:) forControlEvents:UIControlEventTouchUpInside]; } - (void)tapImageControl:(id)sender { NSLog(@"sender = %@", sender); }
由於我們重寫了sendAction:to:forEvent:方法,所以最後處理事件的Selector是ImageControl的handleAction:方法,而不是ViewController的tapImageControl:方法。