2011-08-08 85 views
0

我想根据位置特定事件来开发应用程序,在应用程序的后台模式获取当前位置,并生成,应用程序运行

那么,如何才能让应用进去的背景,并得到持续的位置。

回答

2

苹果已经写了一个演示应用程序做什么是问:Breadcrumb

0
- (CLLocationManager *)locationManager 
{     
    if (locationManager != nil) 
     return locationManager; 

    locationManager = [[CLLocationManager alloc] init]; 

//locationManager.desiredAccuracy = kCLLocationAccuracyNearestTenMeters; 

locationManager.delegate = self; 

return locationManager;   
} 




- (void)applicationDidEnterBackground:(UIApplication *)application 
{ 
    UIApplication* app = [UIApplication sharedApplication]; 
    // Request permission to run in the background. Provide an 
    // expiration handler in case the task runs long. 
    NSAssert(bgTask == UIBackgroundTaskInvalid, nil); 
    bgTask = [app beginBackgroundTaskWithExpirationHandler:^{ 
     // Synchronize the cleanup call on the main thread in case 
     // the task actually finishes at around the same time. 
     dispatch_async(dispatch_get_main_queue(), ^{ 
     if (bgTask != UIBackgroundTaskInvalid) 
     { 
      [app endBackgroundTask:bgTask]; 
      bgTask = UIBackgroundTaskInvalid; 
     }); 
    }]; 
// Start the long-running task and return immediately. 
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ 
    // Do the work associated with the task. 
    // Synchronize the cleanup call on the main thread in case 
    // the expiration handler is fired at the same time. 
    dispatch_async(dispatch_get_main_queue(), ^{ 
     if (bgTask != UIBackgroundTaskInvalid) 
     { 
      [app endBackgroundTask:bgTask]; 
      bgTask = UIBackgroundTaskInvalid; 
     } 
    }); 
}); 

}

- (void) locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation` 

{
NSLog(@"location changed");
UIApplication* app = [UIApplication sharedApplication];

NSArray* oldNotifications = [app scheduledLocalNotifications]; 

// Clear out the old notification before scheduling a new one. 

if ([oldNotifications count] > 0) 

    [app cancelAllLocalNotifications]; 

    // Create a new notification. 

UILocalNotification* alarm = [[[UILocalNotification alloc] init] autorelease]; 

if (alarm) 

{ 
    alarm.timeZone = [NSTimeZone defaultTimeZone]; 

    alarm.repeatInterval = 0; 

    alarm.soundName = @"b.wav"; 

    alarm.alertBody = @"Location changed!"; 


    [app scheduleLocalNotification:alarm]; 

} 

}