-4

NSLog(@"Call me");私はその体にちょうどあるボイド機能を持っているとしましょう。

10秒ごとのように私のビューでそれをどのように呼び出すことができますか。非常に初心者の質問のように聞こえますが、本当に必要です

4

2 に答える 2

3
NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:10 target:self selector:@selector(yourMethod) userInfo:nil repeats:YES];
于 2012-08-23T08:21:49.960 に答える
0

NSTimer クラスを使用 [NSTimerscheduledTimerWithTimeInterval:10.0 target:self selector:@selector(makeMyProgressBarMoving) userInfo:nil repeats:YES]

于 2012-08-23T09:22:51.343 に答える