防止NSTimer和调用对象之间的循环引用
生活随笔
收集整理的這篇文章主要介紹了
防止NSTimer和调用对象之间的循环引用
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
防止NSTimer和調用對象之間的循環引用
@interface NSTimer (EOCBlocksSupport)+ (NSTimer *)eoc_scheduledTimerWithTimeInterval:(NSTimeInterval)intervalblock:(void(^)())blockrepeats:(BOOL)repeats;@end@implementation NSTimer (EOCBlocksSupport)+ (NSTimer *)eoc_scheduledTimerWithTimeInterval:(NSTimeInterval)intervalblock:(void(^)())blockrepeats:(BOOL)repeats {return [self scheduledTimerWithTimeInterval:intervaltarget:selfselector:@selector(eoc_blockInvoke:)userInfo:[block copy]repeats:repeats]; }+ (void)eoc_blockInvoke:(NSTimer*)timer {void (^block)() = timer.userInfo;if (block) {block();} }版權聲明:本文為博主原創文章,未經博主允許不得轉載。
轉載于:https://www.cnblogs.com/zsw-1993/p/4879442.html
總結
以上是生活随笔為你收集整理的防止NSTimer和调用对象之间的循环引用的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 也谈跨域数据交互解决方案
- 下一篇: mysql 与QT的连接