Person
類
@interface Person : NSObject
@property (nonatomic, assign) NSInteger age;
@property (nonatomic, assign) NSString *name;
@end
方法生成一個 Person
對象,block 延時 3 秒后回調,模仿異步回調過程
- (Person *)personConfige:(void(^)())complete{
Person *person = [Person new];
person.name = @"000";
person.age = 1111;
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
!complete?:complete();
});
return person;
}
測試一:
Person *person = [self personConfige:^{
NSLog(@"person : %@ ", person); // 為 nil
}];
運行結果:
person : (null)
解析:
person 為 nil宁脊,block 捕獲的 person 即為 nil;
personConfige
返回對象給 person 后,person 指向新生成的 對象,但是 block 中捕獲的 person 依然指向原先的 nil配椭,因此輸出為:null
測試二:
Person *testP = [Person new];
NSLog(@"testP : %@ ", testP);
Person *person = [self personConfige:^{
NSLog(@"person : %@ ", person); // 為 nil
NSLog(@"block testP : %@ ", testP); // 存在
NSLog(@"block testP.age : %ld, name: %@", testP.age, testP.name);
}];
testP = person;
運行結果:
testP : <Person: 0x6000000345a0>
person : (null)
block testP : <Person: 0x6000000345a0>
block testP.age : 0, name: (null)
解析:
如下圖,1雹姊,testP 指向新生成的對象股缸,block 獲取 testP,block_testP 的引用也指向 testP 引用的對象吱雏;
2敦姻,personConfige
返回新生成的對象給 person,testP 的指針指向 person 引用的對象
3歧杏,testP 的指針雖然發(fā)生變化了替劈,但是 block_testP 的指針沒有改變,還是引用原來的對象得滤,因此 block 中打印的還是最初的 testP 對象
因此陨献,block 中如果想要獲取到方法中返回的對象,有一下兩種做法:
原理:
對 blockTestP 引用的地址進行操作
方法一:
Person *testP = [Person new];
NSLog(@"testP : %@ ", testP);
Person *person = [self personConfige:^{
NSLog(@"person : %@ ", person); // 為 nil
NSLog(@"block testP : %@ ", testP); // 存在
NSLog(@"block testP.age : %ld, name: %@", testP.age, testP.name);
}];
testP.age = person.age;
testP.name = person.name;
運行結果:
testP : <Person: 0x608000029880>
person : (null)
block testP : <Person: 0x608000029880>
block testP.age : 1111, name: 000
將 person 對象的屬性一個一個賦值給 testP 對象
方法二:
NSMutableArray *arr = [NSMutableArray arrayWithObject:@-1];
Person *person2 = [self personConfige:^{
Person *blockPer = arr.firstObject;
NSLog(@"blockPer: %@", blockPer);
NSLog(@"name: %@, age : %ld", blockPer.name, blockPer.age);
}];
NSLog(@"person2: %@", person2);
arr[0] = person2;
運行結果:
person2: <Person: 0x618000036620>
blockPer: <Person: 0x618000036620>
name: 000, age : 1111
圖解:
方法三:
推薦做法:利用 __block
__block Person *person1 = nil;
person1 = [self personConfige:^{
NSLog(@"person : %@ ", person1); // 為 nil
}];
/**
__block Person *person1 = [self personConfige:^{
NSLog(@"person : %@ ", person1); // 為 nil
}];
*/
結果:
2017-06-05 11:17:09.818614 單利-繼承關系[4504:2175415] person : <Person: 0x17002d800>
分析:
block 捕獲 arr懂更,通過 arr 獲取第一個保存的對象眨业。對 arr 中保存的對象進行修改,arr 指向的還是原來的地址沮协,隱藏 block_arr 能夠獲取到修改的對象