0
大家使用下面的代碼後臺任務,它工作正常,當iPhone與Xcode的連接,但是當我跑不連接的Xcode的應用程序,那麼後臺任務將無法正常工作後臺任務只運行
- (void)applicationDidEnterBackground:(UIApplication *)application
{
back=1.0f;
NSAutoreleasePool *pool=[[NSAutoreleasePool alloc] init];
NSRunLoop *runLoop=[NSRunLoop currentRunLoop];
timer=[NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(changeCounter) userInfo:nil repeats:YES];
[runLoop run];
[pool release];
}
請幫助爲什麼發生這種情況