IOS : 如何将 "background model location" 的一个 运行 实例用于多个应用程序
IOS : How can I use one running instance of "background model location" for many applications
是否可以为同一设备中的两个应用程序创建一个 "UIBackgroundModes location" (https://developer.apple.com/library/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/iPhoneOSKeys.html#//apple_ref/doc/uid/TP40009252-SW22) 的 运行 实例(以节省电池能量)?
为两个应用程序使用一个 locationManager = [[CLLocationManager alloc] init] 运行 实例。
由于应用程序的沙盒,这是不可能的。
您可以在此答案中找到更多信息:What is Sandbox in ios , Can i Trans data between in one App to Another App in iPhone,if possible how
是否可以为同一设备中的两个应用程序创建一个 "UIBackgroundModes location" (https://developer.apple.com/library/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/iPhoneOSKeys.html#//apple_ref/doc/uid/TP40009252-SW22) 的 运行 实例(以节省电池能量)? 为两个应用程序使用一个 locationManager = [[CLLocationManager alloc] init] 运行 实例。
由于应用程序的沙盒,这是不可能的。 您可以在此答案中找到更多信息:What is Sandbox in ios , Can i Trans data between in one App to Another App in iPhone,if possible how