之前發(fā)過一篇關于block的文章,剛想去回顧一下,那簡直不堪入目,就一個demo.我是讀者我也不愿意看.對于有些初學者來說,block無疑會給他們帶來一些困惑,理解不了日后便成了他們開發(fā)iOS的障礙物.那么我們還是一起來總結一下block=塊=障礙物?
把零碎的塊(block)清理掉.
//定義block
void (^printTheNum)(int) = ^(int num){
NSLog(@"%d",num);
};
- (void)viewDidLoad {
[super viewDidLoad];
// 1.
printTheNum(5);//這里輸出5
1.這里為什么會輸出5呢?這就簡單了,這里block相當于調用了函數而已
// 2.
int a=5;
int (^test2)(int) = ^(int a ){
a = a+3;
return a+3;
};
a=20;
NSLog(@"%d",test2(a));//這里是26
2.有讀者就想問,這里不是應該報錯的嗎?報你個頭,定義的的block中的參數是a,那么在這個block里,將把20傳到參數里面,再進行運算.
// 3.
int b=5;
int (^test3)(int) = ^(int temp ){
return temp+b;
};
b=20;
NSLog(@"%d",test3(3));//這里是8
```
3.在這里,定義block的時候,就將b的值copy了一份,所以return temp+b;實際上是return temp+5;后面對b的改動是沒有影響的.
// 4.
// int x = 100;
// void (^test4)(int) = ^(int y){
// x = x+y;//Variable is not assignable (missing __block type specifier)
// printf("The x value is %d",x);
// };
// test4(50);
4.在這個block里面,就真的會報錯了,因為x在block中是不允許改變的.類似于左值.
// 5.
int __block x = 100;
void (^test5)(int) = ^(int y){
x = x+y;
printf("The x value is %d",x);
};
test5(50);//這里是150
}
5.在這邊加了__block修飾符,就可以改變x的值了.(我就喜歡改,哈!哈!哈!)
***一般來說我們也不會在一個類里面調用剛寫好的block,這還不如寫個函數,直接調調就好了.更加和諧統(tǒng)一.如果真的將block這么用就真的是大材小用了.***
>- ## 把塊(block)劈開,看看有沒有裝什么好東西.
通常我們將block用在兩個類之間的交流和通信.
---
- 1.情景:用戶進到主界面后,想要用一些核心功能.那么肯定要用戶登錄吧(不能白給你用啊).那么就要求他先登錄.跳轉到登錄界面,那么登錄完以后在主界面也要顯示用戶的稱呼,以示我對你尊敬嘛.那這要怎么做呢?
VC1 --> VC2(輸入name) -->VC1 (顯示name) VC可理解為頁面
VC1中的代碼 :
LoginViewController *login = [[LoginViewController alloc] initWithResultBlock:^(BOOL isLogin) {
if (isLogin)
{//登錄完成以后再調用的代碼.
NSString * heheda = [[publicValue shareValue].userInof objectForKey:@"account"];
[self.my_btn setTitle:heheda forState:UIControlStateNormal];
}
} Animation:YES];
[self presentViewController:login animated:YES completion:^{
}];
VC2中的代碼:
@interface LoginViewController : UIViewController
void(^getLoginResultBlock)(BOOL isLogin);
@end
-(void)xixi{
[[publicValue shareValue].userInof setValue:@"ozx" forKey:@"account"];
[publicValue shareValue].isLogin = YES;
//調用block
getLoginResultBlock([publicValue shareValue].isLogin);
[self dismissViewControllerAnimated:YES completion:^{
}];
}
其實在VC2中, 執(zhí)行完```getLoginResultBlock([publicValue shareValue].isLogin)```這句代碼以后,就會調用VC1中的代碼.
if (isLogin)
{//登錄完成以后再調用的代碼.
NSString * heheda = [[publicValue shareValue].userInof objectForKey:@"account"];
[self.my_btn setTitle:heheda forState:UIControlStateNormal];
}
---
- 2.一個例子不夠,那么再來一個
-
(void)endInput:(void (^)())hehe
{
[UIView animateWithDuration:0.25 animations:^{} completion:^(BOOL finished) {
if (hehe) { hehe(); }
}];
}
//調用
[self endInput:^{
NSLog("又要改需求?我擦!");
}];
這個例子又有沒有看懂?沒看懂沒關系,我們換種方式再看看
void (^ hehe) = ^{ NSLog("又要改需求?我擦!");};
[self endInput:hehe];
- (void)endInput:(void (^)())hehe
{
[UIView animateWithDuration:0.25 animations:^{
} completion:^(BOOL finished) {
if (hehe) { //問hehe這個block有沒有,有,那么做下面的
hehe(); //hehe()即等同于NSLog("又要改需求?我擦!");
}
}];
}
應該可以看懂了把
---
有很多同學都問,NSArray的那個遍歷方法又是怎么回事啊?其實里面也是有進行回調,只是jobs叫下面的人屏蔽了方法而已了啦.
```[array enumerateObjectsWithOptions:NSEnumerationReverse usingBlock:^(id str,NSUInteger index, BOOL* te){
}]```
其實要理解block,首先要灌入一種思想,就是調用時的block如:
```[self endInput:^{
NSLog("又要改需求?我擦!");
}];```
在這一句結束的時候,block里面的代碼并沒有執(zhí)行,要等到調用的方法執(zhí)行了```hehe(); ```時才會調用block中的方法.
####***比如我打你一巴掌(發(fā)送消息),然后你說你打到我了(響應消息),那我心里就爽了(回調block).***
這就是核心思想.
那個頁面之間傳值demo也貼出來,感覺沒什么必要下載,自己完全可以敲一下.
https://github.com/ouzhenxuan/ios-block-used
最后謝謝你看完.