码迷,mamicode.com
首页 > 移动开发 > 详细

【iOS】self与block的使用规范

时间:2016-04-05 19:12:27      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

避免block中循环引用,内存释放不了的问题,规范编码很重要。

相对来说,在block中操作self时,正确的使用姿势。

 1 BlockManager *bm = [BlockManager sharedInstance];
 2     
 3 __weak typeof(self) weakSelf = self;
 4 [bm doSomethingWithBlock:^NSString *(NSInteger value) {
 5     __strong typeof(weakSelf) strongSelf = weakSelf;   //不能缺少
 6     if (strongSelf) {
 7         NSLog(@"%@", strongSelf.array[7]);
 8         [strongSelf printMsg];
 9         return @"YES";
10     }
11     
12     return @"NO";
13 }];

 

【iOS】self与block的使用规范

标签:

原文地址:http://www.cnblogs.com/vokie/p/5356124.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!