本文翻譯自蘋果的文檔,有刪減,也有添加本身的理解部分。
html
若是有Block語法不懂的,能夠參考fuckingblocksyntax,裏面對於Blockpython
爲了方便對比,下面的代碼我假設是寫在ViewController子類中的ios
一、第一部分git
定義和使用Block,
github
- (void)viewDidLoad { [super viewDidLoad]; //(1)定義無參無返回值的Block void (^printBlock)() = ^(){ printf("no number"); }; printBlock(); printBlock(9); int mutiplier = 7; //(3)定義名爲myBlock的代碼塊,返回值類型爲int int (^myBlock)(int) = ^(int num){ return num*mutiplier; } //使用定義的myBlock int newMutiplier = myBlock(3); printf("newMutiplier is %d",myBlock(3)); } //定義在-viewDidLoad方法外部 //(2)定義一個有參數,沒有返回值的Block void (^printNumBlock)(int) = ^(int num){ printf("int number is %d",num); };
定義Block變量,就至關於定義了一個函數。可是區別也很明顯,由於函數確定是在-viewDidLoad方法外面定義,而Block變量定義在了viewDidLoad方法內部。固然,咱們也能夠把Block定義在-viewDidLoad方法外部,例如上面的代碼塊printNumBlock的定義,就在-viewDidLoad外面。
app
再來看看上面代碼運行的順序問題,以第(3)個myBlock距離來講,在定義的地方,並不會執行Block{}內部的代碼,而在myBlock(3)調用以後纔會執行其中的代碼,這跟函數的理解其實差很少,就是隻要在調用Block(函數)的時候纔會執行Block體內(函數體內)的代碼。因此上面的簡單代碼示例,我能夠做出以下的結論,函數
(1)在類中,定義一個Block變量,就像定義一個函數;ui
(2)Block能夠定義在方法內部,也能夠定義在方法外部;atom
(3)只有調用Block時候,纔會執行其{}體內的代碼;spa
(PS:關於第(2)條,定義在方法外部的Block,其實就是文件級別的全局變量)
那麼在類中定義一個Block,特別是在-viewDidLoad方法體內定義一個Block到底有什麼意義呢?我表示這時候只把它當作私有函數就能夠了。我以前說過,Block其實就至關於代理,那麼這時候我該怎樣將其與代理類比以瞭解呢。這時候我能夠這樣說:本類中的Block就至關於類本身服從某個協議,而後讓本身代理本身去作某個事情。很拗口吧?看看下面的代碼,
//定義一個協議 @protocol ViewControllerDelegate<NSObject> - (void)selfDelegateMethod; @end //本類實現這個協議ViewControllerDelegate @interface ViewController ()<ViewControllerDelegate> @property (nonatomic, assign) id<ViewControllerDelegate> delegate; @end
接着在-viewDidLoad中的代碼以下,
- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view from its nib. self.delegate = self; if (self.delegate && [self.delegate respondsToSelector:@selector(selfDelegateMethod)]) { [self.delegate selfDelegateMethod]; } } #pragma mark - ViewControllerDelegate method //實現協議中的方法 - (void)selfDelegateMethod { NSLog(@"本身委託本身實現的方法"); }
看出這種寫法的奇葩地方了嗎?本身委託本身去實現某個方法,而不是委託別的類去實現某個方法。本類中定義的一個Block其實就是閒的蛋疼,委託本身去字作某件事情,實際的意義不大,因此你不多看見別人的代碼直接在類中定義Block而後使用的,Block不少的用處是跨越兩個類來使用的,好比做爲property屬性或者做爲方法的參數,這樣就能跨越兩個類了。
二、第二部分
__block關鍵字的使用
在Block的{}體內,是不能夠對外面的變量進行更改的,好比下面的語句,
- (void)viewDidLoad { //將Block定義在方法內部 int x = 100; void (^sumXAndYBlock)(int) = ^(int y){ x = x+y; printf("new x value is %d",x); }; sumXAndYBlock(50); }
這段代碼有什麼問題呢,Xcode會提示x變量錯誤信息:Variable is not assigning (missing __block type),這時候給int x = 100;語句前面加上__block關鍵字便可,以下,
__block int x = 100;
這樣在Block的{}體內,就能夠修改外部變量了。
三、第三部分:Block做爲property屬性實現頁面之間傳值
需求:在ViewController中,點擊Button,push到下一個頁面NextViewController,在NextViewController的輸入框TextField中輸入一串字符,返回的時候,在ViewController的Label上面顯示文字內容,
(1)第一種方法:首先看看經過「協議/代理」是怎麼實現兩個頁面之間傳值的吧,
//NextViewController是push進入的第二個頁面 //NextViewController.h 文件 //定義一個協議,前一個頁面ViewController要服從該協議,而且實現協議中的方法 @protocol NextViewControllerDelegate <NSObject> - (void)passTextValue:(NSString *)tfText; @end @interface NextViewController : UIViewController @property (nonatomic, assign) id<NextViewControllerDelegate> delegate; @end //NextViewController.m 文件 //點擊Button返回前一個ViewController頁面 - (IBAction)popBtnClicked:(id)sender { if (self.delegate && [self.delegate respondsToSelector:@selector(passTextValue:)]) { //self.inputTF是該頁面中的TextField輸入框 [self.delegate passTextValue:self.inputTF.text]; } [self.navigationController popViewControllerAnimated:YES]; }
接下來咱們在看看ViewController文件中的內容,
//ViewController.m 文件 @interface ViewController ()<NextViewControllerDelegate> @property (strong, nonatomic) IBOutlet UILabel *nextVCInfoLabel; @end //點擊Button進入下一個NextViewController頁面 - (IBAction)btnClicked:(id)sender { NextViewController *nextVC = [[NextViewController alloc] initWithNibName:@"NextViewController" bundle:nil]; nextVC.delegate = self;//設置代理 [self.navigationController pushViewController:nextVC animated:YES]; } //實現協議NextViewControllerDelegate中的方法 #pragma mark - NextViewControllerDelegate method - (void)passTextValue:(NSString *)tfText { //self.nextVCInfoLabel是顯示NextViewController傳遞過來的字符串Label對象 self.nextVCInfoLabel.text = tfText; }
這是經過「協議/代理」來實現的兩個頁面之間傳值的方式。
(2)第二種方法:使用Block做爲property,實現兩個頁面之間傳值,
先看看NextViewController文件中的內容,
//NextViewController.h 文件 @interface NextViewController : UIViewController @property (nonatomic, copy) void (^NextViewControllerBlock)(NSString *tfText); @end //NextViewContorller.m 文件 - (IBAction)popBtnClicked:(id)sender { if (self.NextViewControllerBlock) { self.NextViewControllerBlock(self.inputTF.text); } [self.navigationController popViewControllerAnimated:YES]; }
再來看看ViewController文件中的內容,
- (IBAction)btnClicked:(id)sender { NextViewController *nextVC = [[NextViewController alloc] initWithNibName:@"NextViewController" bundle:nil]; nextVC.NextViewControllerBlock = ^(NSString *tfText){ [self resetLabel:tfText]; }; [self.navigationController pushViewController:nextVC animated:YES]; } #pragma mark - NextViewControllerBlock method - (void)resetLabel:(NSString *)textStr { self.nextVCInfoLabel.text = textStr; }
好了就這麼多代碼,可使用Block來實現兩個頁面之間傳值的目的,實際上就是取代了Delegate的功能。
另外,博客中的代碼Sample Code能夠再Github下載,若是由於Github被牆了,能夠在終端使用git clone + 完整連接,便可克隆項目到本地。
Github中的代碼,能夠開啓兩種調試模式,你須要在項目的配置文件BlockSamp-Prefix.pch中註釋或者解註釋下面的代碼,
#define Debug_BlcokPassValueEnable
便可開啓兩種調試的方式,若是註釋了上面的語句就是使用Delegate進行調試;不然使用Block進行調試。