我想在每10分钟申请一次后发动一次动作。
我希望每10分钟后显示一次全屏广告,无论应用程序当前位于何处ViewController
。
答案 0 :(得分:2)
您需要NSTimer
设置timeInterval = 10
和repeats = YES
,并将此计时器声明为didFinishLaunchingWithOptions
方法。有关详细信息,请参阅此official documentation of NSTimer
.
答案 1 :(得分:0)
试试这个:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
timer = [NSTimer scheduledTimerWithTimeInterval:600 target:self selector:@selector(doAction) userInfo:nil repeats:YES ];
[pool release];
}
希望它会有所帮助。