Capturing 'self' strongly in this block is likely to lead to a retain cycle
生活随笔
收集整理的這篇文章主要介紹了
Capturing 'self' strongly in this block is likely to lead to a retain cycle
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
技術分享???Phone?|?閱讀(1629)?|?評論(0) May 10 2014
_player.completionBlock = ^{
????????????[self stopPlay];
????????};
上面在block里用self是會有提示:
Capturing 'self' strongly in this block is likely to lead to a retain cycle
可以這樣改一下
__weak typeof(self) weakSelf = self;
????????_player.completionBlock = ^{
????????????[weakSelf stopPlay];
????????};
參考自:http://stackoverflow.com/questions/14556605/capturing-self-strongly-in-this-block-is-likely-to-lead-to-a-retain-cycle?
frameborder="0" scrolling="no" src="http://hits.sinajs.cn/A1/weiboshare.html?url=http%3A%2F%2Fwww.aslibra.com%2Fblog%2Fread.php%2F1771.htm&appkey=&type=4&ralateUid=1564565147" width="142" height="32">?
原創內容如轉載請注明:來自?阿權的書房
????????????[self stopPlay];
????????};
上面在block里用self是會有提示:
Capturing 'self' strongly in this block is likely to lead to a retain cycle
可以這樣改一下
__weak typeof(self) weakSelf = self;
????????_player.completionBlock = ^{
????????????[weakSelf stopPlay];
????????};
參考自:http://stackoverflow.com/questions/14556605/capturing-self-strongly-in-this-block-is-likely-to-lead-to-a-retain-cycle?
frameborder="0" scrolling="no" src="http://hits.sinajs.cn/A1/weiboshare.html?url=http%3A%2F%2Fwww.aslibra.com%2Fblog%2Fread.php%2F1771.htm&appkey=&type=4&ralateUid=1564565147" width="142" height="32">?
原創內容如轉載請注明:來自?阿權的書房
總結
以上是生活随笔為你收集整理的Capturing 'self' strongly in this block is likely to lead to a retain cycle的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 块语法Block在MVC思维的妙用之多重
- 下一篇: iOS: 在代码中使用Autolayou