我读过当执行这样的代码块时:
__weak typeof(self) weakSelf = self;
[self doSomethingInBackgroundWithBlock:^{
[weakSelf doSomethingInBlock];
// weakSelf could possibly be nil before reaching this point
[weakSelf doSomethingElseInBlock];
}];
应该这样:
__weak typeof(self) weakSelf = self;
[self doSomethingInBackgroundWithBlock:^{
__strong typeof(weakSelf) strongSelf = weakSelf;
if (strongSelf) {
[strongSelf doSomethingInBlock];
[strongSelf doSomethingElseInBlock];
}
}];
所以我想复制一个情况,在块执行过程中,weakSelf变为零。
因此,我创建了以下代码:
* ViewController *
@interface ViewController ()
@property (strong, nonatomic) MyBlockContainer* blockContainer;
@end
@implementation ViewController
- (IBAction)caseB:(id)sender {
self.blockContainer = [[MyBlockContainer alloc] init];
[self.blockContainer createBlockWeakyfy];
[self performBlock];
}
- (IBAction)caseC:(id)sender {
self.blockContainer = [[MyBlockContainer alloc] init];
[self.blockContainer createBlockStrongify];
[self performBlock];
}
- (void) performBlock{
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
self.blockContainer.myBlock();
});
[NSThread sleepForTimeInterval:1.0f];
self.blockContainer = nil;
NSLog(@"Block container reference set to nil");
}
@end
* MyBlockContainer *
@interface MyBlockContainer : NSObject
@property (strong) void(^myBlock)();
- (void) createBlockWeakyfy;
- (void) createBlockStrongify;
@end
@implementation MyBlockContainer
- (void) dealloc{
NSLog(@"Block Container Ey I have been dealloc!");
}
- (void) createBlockWeakyfy{
__weak __typeof__(self) weakSelf = self;
[self setMyBlock:^() {
[weakSelf sayHello];
[NSThread sleepForTimeInterval:5.0f];
[weakSelf sayGoodbye];
}];
}
- (void) createBlockStrongify{
__weak __typeof__(self) weakSelf = self;
[self setMyBlock:^() {
__typeof__(self) strongSelf = weakSelf;
if ( strongSelf ){
[strongSelf sayHello];
[NSThread sleepForTimeInterval:5.0f];
[strongSelf sayGoodbye];
}
}];
}
- (void) sayHello{
NSLog(@"HELLO!!!");
}
- (void) sayGoodbye{
NSLog(@"BYE!!!");
}
@end
因此,我期望createBlockWeakyfy会生成我想复制的场景,但是我没有做到。
输出与createBlockWeakyfy和createBlockStrongify相同
HELLO!!!
Block container reference set to nil
BYE!!!
Block Container Ey I have been dealloc!
有人可以告诉我我做错了吗?
最佳答案
您的dispatch_async
块是一个强大的参考。当该块访问您的MyBlockContainer
以获取其myBlock
属性时,它将在该块的整个生命周期中为其创建强大的引用。
如果将代码更改为此:
__weak void (^block)() = self.blockContainer.myBlock;
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
block();
});
您应该看到预期的结果。