× [PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。 |
1つなら以下で
[NSTimer scheduledTimerWithTimeInterval:0.05 target:self selector:@selector(mainLoop) userInfo:nil repeats:YES]; でも2つのタイマーを別々に処理したいときはどうするればいいのか? NSTimer *mainTimer = [NSTimer scheduledTimerWithTimeInterval:0.05 target:self selector:@selector(mainLoop) userInfo:nil repeats:YES]; [[NSRunLoop currentRunLoop] addTimer: mainTimer forMode:NSDefaultRunLoopMode]; NSTimer *subTimer = [NSTimer scheduledTimerWithTimeInterval:0.05 target:self selector:@selector(subLoop) userInfo:nil repeats:YES]; [[NSRunLoop currentRunLoop] addTimer: subTimer forMode:NSDefaultRunLoopMode]; とすれば良いようです。 複数別々なタイマーとして使いたいときかな。 PR |
|
忍者ブログ [PR] |