iPhone的Objective-C编程:每10分钟执行一次后台任务

| 我希望我的应用程序在后台每10分钟执行一次特定的方法 有可能的 ?谢谢     
已邀请:
如果我正确理解了您的问题……您是说用户点击“主页”按钮之后? 如果是这样,那么我相信不可能做您想做的事。 通过apple docs,iOS应用程序可以在后台激活以执行以下一项或多项操作: 任务完成:当应用启动任务并且用户按下主页按钮时,应用可以要求在后台在有限的时间内继续执行任务,然后进入暂停状态 位置:触发位置更改后,应用会在有限的时间内处于活动状态。 用于播放音频 网络电话 看看多任务准则文档。 干杯     
minutesTimer = [NSTimer scheduledTimerWithTimeInterval:60*10 target:self selector:@selector(update) userInfo:NULL repeats:YES];
    
if ([countTimer isValid]==NO)
{
    countTimer=[NSTimer scheduledTimerWithTimeInterval:600 target:self selector:@selector(YourMethod) userInfo:nil repeats:YES];
}
    

要回复问题请先登录注册