아래와 같은 패턴에서 block 안에서 self를 사용하게 되면 capturing self strongly in this block is likely to lead to a retain cycle 라는 경고가 뜨게 된다. 그럴 때에는
__weak typeof(self) weakSelf = self;
^(NSDictionary *dic) {
self.~~~~~~ 이렇게 쓰지말고
weakSelf.~~~~~~ 이렇게 쓰자
}
'Development > IOS & Mac' 카테고리의 다른 글
[IOS Library] 이미지 Blur 처리해주는 라이브러리 (0) | 2014.05.13 |
---|---|
[IOS Library] 이미지에서 색상값 추출 (0) | 2014.05.12 |
[iOS] NSString URLEncoding 하기 (0) | 2014.04.05 |
[iOS] Animation에서 터치가 되지 않을때.. (0) | 2014.03.18 |
[iOS] iOS 7 status bar에서 hidden이 되지 않을때~!! (0) | 2014.03.05 |