CocoaTouch ObjectiveCで30秒に1回、または30秒ごとにイベントを発生させるソリューションがあるかどうか疑問に思いました。
PerformSelector:ファミリには制限があります。最も近いsetTimeoutに相当するものは次のとおりです。
dispatch_time_t delay = dispatch_time(DISPATCH_TIME_NOW, NSEC_PER_SEC * 0.5);
dispatch_after(delay, dispatch_get_main_queue(), ^(void){
// do work in the UI thread here
});
EDIT:構文糖衣構文と実行をキャンセルする機能(clearTimeout)を提供するいくつかのプロジェクト:
NSTimer
クラスを見てください:
NSTimer *timer;
...
timer = [[NSTimer scheduledTimerWithTimeInterval:30.0 target:self selector:@selector(thisMethodGetsFiredOnceEveryThirtySeconds:) userInfo:nil repeats:YES] retain];
[timer fire];
他の場所に、イベントを処理する実際のメソッドがあります。
- (void) thisMethodGetsFiredOnceEveryThirtySeconds:(id)sender {
NSLog(@"fired!");
}
+[NSTimer scheduledTimerWithTimeInterval:target:selector:userInfo:repeats:]
他のNSTimer
メソッドも確認することをお勧めします