1) 直接创建
[[HLTimerCenter defaultCenter] createTimer:1 afterTime:0 repeatsCount:5 repeats:NO autoPlay:YES handler:^{
NSLog(@"泡一下");
}];
2) 分步创建
HLTimer *timer = [[HLTimer alloc] initWithTime:1 andAfterTime:0 andRepeatsCount:5 isRepeats:NO completionHandler:^{
NSLog(@"跑一下");
}];
[[HLTimerCenter defaultCenter] addTimer:timer autoPlay:NO];
该库需要在iOS 8.0和Xcode 7.0以上环境中运行。
HLTimerCenter可以通过CocoaPods访问。要安装它,只需将以下行添加到您的Podfile中
pod "HLTimerCenter"
wangshiyu13, [email protected]
HLNetworking在MIT许可证下可用。有关更多信息,请参阅LICENSE文件。