iOS SEL的理解與使用

   有不少人,認爲block的推廣可取代代理設計模式,其實block並不能取代代理,代理的模式可讓代碼邏輯性更強,更整潔,也會有更高的可讀性和可擴展性。相比之下,我以爲block更多的是取代了選擇器@selector。設計模式

   @selector是什麼?咱們要首先明白SEL,SEL並非一種對象類型,咱們經過xCode的字體顏色就能夠判斷出來,它是一個關鍵字,就像int,long同樣,它聲明瞭一種類型:類方法指針。其實就能夠理解爲一個函數指針。好比,咱們生命一個叫myLog的函數指針:xcode

#import "ViewController.h"

@interface ViewController ()
{
    SEL myLog;
}
@end

聲明出了這個指針,咱們該如何給它傳遞這個函數呢?有兩種方式:函數

一、在編譯時,使用@selector來取得函數字體

如今,咱們應該明白@selector是什麼了,它是一個編譯標示,咱們經過它來取到相應函數。spa

@interface ViewController ()
{
    SEL myLog;
}
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    myLog = @selector(myLogL);
    //經過performSelector來執行方法
   [self performSelector:myLog];//打印 「myLog」
   
}
-(void)myLogL{
    NSLog(@"myLog");
}

二、在運行時,經過NSSelectorFromString方法來取到相應函數:設計

#import "ViewController.h"

@interface ViewController ()
{
    SEL myLog;
}
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    myLog = NSSelectorFromString(@"myLogN");
    [self performSelector:myLog];
   
}


-(void)myLogN{
    NSLog(@"myLog");
}

這兩種方式的差異在於,編譯時的方法若是沒有找到相應函數,xcode會報錯,而運行時的方法不會。代理

至於SEL的應用,我相信最普遍的即是target——action設計模式了。咱們來簡單模擬一下系統button的工做原理:指針

咱們先建立一個繼承於UIButton的類:code

.h文件:orm

#import <UIKit/UIKit.h>

@interface Mybutton : UIButton
-(void)addMyTarget:(id)target action:(SEL)action;
@end

.m文件

#import "Mybutton.h"

@implementation Mybutton
{
    SEL _action;
    id _target;
}
-(void)addMyTarget:(id)target action:(SEL)action{
    _target=target;
    _action=action;
}
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
    [_target performSelector:_action];
}


@end

在外部:

- (void)viewDidLoad {
    [super viewDidLoad];
    Mybutton * btn = [[Mybutton alloc]initWithFrame:CGRectMake(100, 100, 60, 60)];
    btn.backgroundColor=[UIColor redColor];
    [btn addMyTarget:self action:@selector(click)];
    [self.view addSubview:btn];
}

-(void)click{
    NSLog(@"點擊了btn");
}

固然,若是要調用參數,系統提供的默認參數不超過兩個,若是參數不少,一種是咱們能夠經過字典傳參,另外一種方法比較複雜,在這裏先不討論。

 

錯誤之處,歡迎指正

歡迎轉載,註明出處

專一技術,熱愛生活,交流技術,也作朋友。

——琿少 QQ羣:203317592

相關文章
相關標籤/搜索