Iphone 当我从应用程序呼叫时gps停止(在挂断电话时自动停止gps)

Iphone 当我从应用程序呼叫时gps停止(在挂断电话时自动停止gps),iphone,ios5,ios6,ios4,Iphone,Ios5,Ios6,Ios4,我已经启动gps并使用openurl(电话)拨打电话,但当电话挂断时,gps将自动停止 实际上,在我重新打开应用程序并通过停用按钮停止gps之前,我希望gps处于开启状态。嗨,试试这个 locationManager = [[CLLocationManager alloc] init]; locationManager.delegate = self; locationManager.distanceFilter = 1.0f; locationManager.desiredAccuracy =

我已经启动gps并使用openurl(电话)拨打电话,但当电话挂断时,gps将自动停止

实际上,在我重新打开应用程序并通过停用按钮停止gps之前,我希望gps处于开启状态。

嗨,试试这个

locationManager = [[CLLocationManager alloc] init];
locationManager.delegate = self;
locationManager.distanceFilter = 1.0f;
locationManager.desiredAccuracy = kCLLocationAccuracyBest;
[locationManager startUpdatingLocation];
[locationManager startMonitoringSignificantLocationChanges];

我希望这将对您有所帮助。

您的后台任务中是否包含位置?是的,我有定义应用程序需要后台任务