我已经仔细阅读了关于多任务处理的苹果开发用户指南,但我仍然无法理解如何在后台运行简单的操作。我做了以下简单的实验,但什么也没发生:
- (void)applicationDidEnterBackground:(UIApplication *)application
{
sleep(3);
UIAlertView *alert1 = [[UIAlertView alloc] initWithTitle:@"title" message:@"test" delegate:nil cancelButtonTitle:nil otherButtonTitles:nil , nil];
[alert1 show];
}
所以我知道默认情况下在后台添加对音频/位置/VoIP 操作的支持,但是如何添加对这样一个简单操作的支持?
非常感谢您的帮助。