我正在编写一个类似于 Chris Alvares daemon 的守护进程。我想在未经用户许可的情况下在后台获取设备位置。如果设置中的 Location Services
首选项设置为 ON
,那么我获取位置没有问题。为此,我将 bool 值设置为 true 添加到我的可执行权限 com.apple.locationd.preauthorized
键中。问题是当 Location Services
关闭时。在这种情况下,当我想获取设备位置时,会弹出一个 UIAlertView,告诉用户位置服务已关闭。基本上有两种方法,但我不知道它们是否可行。首先,以编程方式打开/关闭设置中的定位服务首选项。其次,使用另一个代码获取位置而不需要设置位置服务 ON
更新 01:
我按照 iMokhles 说的做了,我想它应该可以工作但没有任何 react 。我想这是因为权利,我看到了系统日志,这是记录的内容:
iPhone locationd[44] <Error>: Entitlement com.apple.locationd.authorizeapplications required to use _CLDaemonSetLocationServicesEnabled
iPhone myDaemon[3443] <Error>: CoreLocation: CLInternalSetLocationServicesEnabled failed
所以我将此 key 添加到权利,但它仍然给了我这个错误。在检查首选项应用程序权利后,我将这些行添加到权利 plist 中,但再次没有任何 react 。
<key>com.apple.locationd.authorizeapplications</key>
<true/>
<key>com.apple.locationd.defaults_access</key>
<true/>
<key>com.apple.locationd.effective_bundle</key>
<true/>
<key>com.apple.locationd.status</key>
<true/>
最佳答案
这是来自 FlipSwitch Location Switch 的示例
在你的标题中声明它
@interface CLLocationManager
+ (id)sharedManager;
+ (BOOL)locationServicesEnabled;
+ (void)setLocationServicesEnabled:(BOOL)enabled;
@end
然后您可以使用以下代码访问它
检查是否启用
if([[[objc_getClass("CLLocationManager") sharedManager] locationServicesEnabled] {
// Enabled
} else {
// Disabled
}
并启用/禁用位置
[objc_getClass("CLLocationManager") setLocationServicesEnabled:YES];
[objc_getClass("CLLocationManager") setLocationServicesEnabled:NO];
并且不要忘记导入 CoreLocation 框架 ;)
和
#import <objc/runtime.h>
编辑
检查上面的代码
祝你好运
关于ios - 在 iOS 中获取 iPhone 位置,而不将首选项定位服务设置为 ON,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25608339/