读书人

在iPhone下执行后台任务

发布时间: 2012-08-25 10:06:20 作者: rapoo

在iPhone上执行后台任务


- (void)applicationDidEnterBackground:(UIApplication *)application{ // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. UIDevice *device = [UIDevicecurrentDevice]; BOOL backgroundSupported = NO; if ([device respondsToSelector:@selector(isMultitaskingSupported)]) { backgroundSupported = YES; } __blockUIBackgroundTaskIdentifier bgTaskId = [application beginBackgroundTaskWithExpirationHandler:^{ [application endBackgroundTask:bgTaskId]; bgTaskId = UIBackgroundTaskInvalid; }]; if (backgroundSupported) { dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ // }); }}


原文地址:http://blog.csdn.net/jasonblog/article/details/7794886

Jason Lee @ Hangzhou


读书人网 >Iphone

热点推荐