0%

〈extreme.framework/NSTimer+EFBlockSupport.h〉

extreme.framework/NSTimer+EFBlockSupport.h〉

1.5~[这是什么?]

+ef_scheduledTimerWithTimeInterval:block:repeats:[这是什么?]

使用 ef_scheduledTimerWithTimeInterval:block:repeats: 来避免循环引用。[这是什么?]

参数:

interval 循环周期 NSTimeInterval
block 执行块 void(^)(void)
repeats BOOL 是否循环执行,YES 循环执行 NO 执行一次

返回值:

NSTimer NSTimer实例。

1
2
3
4
5
6
7
8
9
/**
使用 ef_scheduledTimerWithTimeInterval: block: repeats: 来避免循环引用

@param interval 循环周期
@param block 执行块
@param repeats 是否循环执行
@return 返回 NSTimer实例
*/
+ (NSTimer *)ef_scheduledTimerWithTimeInterval:(NSTimeInterval)interval block:(void(^)(void))block repeats:(BOOL)repeats;

[这是什么?]