반응형
modifying layer that is being finalized가 나오면 크래쉬 되거나 아무에러 없이 크래쉬 될때.
[self.subview release]; self.subview = nil;
이렇게 하기 보단 아래와 같이 하면 피할수 있다.
[self.subview removeFromSuperview];
self.subview = nil;
반응형
'iDev' 카테고리의 다른 글
webview 에서 html 한글이 깨질때 (0) | 2011.01.06 |
---|---|
cocos2d에 game center 넣기 (0) | 2010.12.24 |
Linking Error: CGRectZero and CGRectOffset - [#iOSDevKor] (0) | 2010.07.14 |
iAd 적용시 주의 할점 - [#iOSDevKor] (0) | 2010.07.14 |
JailBreak 한건지 안한건지 판별 - [#iOSDevKor] (0) | 2010.07.13 |