block中到底什么时候用weakSelf和strongSelf

  • Apple 官方的建议是,传进 Block 之前,把 ‘self’ 转换成 weak automatic 的变量,这样在 Block 中就不会出现对 self 的强引用。如果在 Block 执行完成之前,self 被释放了,weakSelf 也会变为 nil。

__weak __typeof__(self) weakSelf = self;
    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
    [weakSelf doSomething];
});
clang 的文档表示,在 doSomething 内,weakSelf 不会被释放。但,下面的情况除外:__weak __typeof__(self) weakSelf = self;
    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
    __strong __typeof(self) strongSelf = weakSelf;
    [strongSelf doSomething];
    [strongSelf doOtherThing];
});
  • 在 doSomething 中,weakSelf 不会变成 nil,不过在 doSomething 执行完成,调用第二个方法 doOtherThing 的时候,weakSelf 有可能被释放,于是,strongSelf 就派上用场了:

__weak __typeof__(self) weakSelf = self;
   dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
   __strong __typeof(self) strongSelf = weakSelf;
   [strongSelf doSomething];
   [strongSelf doOtherThing];
});
  • 例:虽然在这个方法中在block内部调用了self,但是block不是self的属性不会形成循环引用

- (void)loadNewData
{
    AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
    NSMutableDictionary *parameters = [NSMutableDictionary  dictionary];
    parameters[@"a"] = @"list";
    parameters[@"c"] = @"data";
    parameters[@"type"] = @(self.type);
    [manager GET:basicUrl parameters:parameters progress:nil success:^(NSURLSessionDataTask * _Nonnull task, id  _Nullable responseObject) {
        //储存maxtime
        self.maxtime = responseObject[@"info"][@"maxtime"];
        
        // 字典数组 -> 模型数据
        self.topics =  [XCAllItem mj_objectArrayWithKeyValuesArray:responseObject[@"list"]];
        [self.tableView reloadData];
        
        //结束刷新
        [self.tableView.mj_header endRefreshing];
    } failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
        [SVProgressHUD showErrorWithStatus:@"网络错误"];
        
    }];
    //结束刷新
    [self.tableView.mj_header endRefreshing];
}
  • 例:这个方法中block内部调用了self.manager是self的属性,所以直接用self会形成循环引用

-(void)loadNewComments
{
    [self.manager.tasks makeObjectsPerformSelector:@selector(cancel)];
    
    NSMutableDictionary *params = [NSMutableDictionary dictionary];
    params[@"a"]= @"dataList";
    params[@"c"] = @"comment";
    params[@"data_id"] = self.topic.ID;
    params[@"hot"] = @1;
    __weak typeof(self) weakSelf = self;
    [self.manager GET:basicUrl parameters:params progress:nil success:^(NSURLSessionDataTask * _Nonnull task, id  _Nullable responseObject) {
        
        if ([responseObject isKindOfClass:[NSArray class]]) {
            //没有评论数据
            [self.tableView.mj_header endRefreshing];
            return ;
        }
        
        //最热评论
        weakSelf.hotComments = [XCComment mj_objectArrayWithKeyValuesArray:responseObject[@"hot"]];
        //最新评论
        weakSelf.hotComments = [XCComment mj_objectArrayWithKeyValuesArray:responseObject[@"data"]];
        [weakSelf.tableView reloadData];
        [weakSelf.tableView.mj_header endRefreshing];
        //判断评论数据是否已经加载完全
        if (self.latestComments.count >= [responseObject[@"total"] intValue]) {
            weakSelf.tableView.mj_footer.hidden = YES;
        }
        NSLog(@"%@",responseObject);
    } failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
        [weakSelf.tableView.mj_footer endRefreshing];
    }];
}
  • __strong 确保在 Block 内,strongSelf 不会被释放。

  • 总结

    • 在 Block 内如果需要访问 self 的方法、属性、变量,建议使用 weakSelf,weakSelf用会随着上一级的销毁一起销毁。

    • 如果在 Block 内需要多次 访问 self,则需要使用 strongSelf,如果block里面有一些任务即使 该页面退出了还需要执行完毕的,也需要使用strongSelf

你可能感兴趣的:(block中到底什么时候用weakSelf和strongSelf)