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

iOS __weak __strong

时间:2016-04-15 15:26:51      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:

 

 

在block中常常会用到self,可是会造成循环引用。这时候就需要这样来解决这个问题:

 

#define WeakSelf __weak __typeof(self) weakSelf = self
#define StrongSelf __strong __typeof(weakSelf) self = weakSelf

 

- (void)aFunc:(id)sender {
    
    WeakSelf;//1
    [UIView animateWithDuration:1 animations:^{
        StrongSelf;//2
        [self.view doSomething];//use self
    }];
}

 

iOS __weak __strong

标签:

原文地址:http://www.cnblogs.com/ficow/p/5395512.html

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