摘要: 一、检测多任务是否支持:- (BOOL) isMultitaskingSupported{BOOL result = NO;if ([[UIDevice currentDevice]respondsToSelector:@selector(isMultitaskingSupported)]){result = [[UIDevice currentDevice] isMultitaskingSupported];}return result;}多任务需要硬件支持,所以有些旧设备就算是升级到最新的操作系统后仍然是不能使用多任务的。二、当应用程序后台时可以向系统“借”时间来继续完成任务:使用UIAp 阅读全文
posted @ 2013-12-30 11:17 _还是不懂 阅读(235) 评论(0) 推荐(0) 编辑