• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

即使应用程序终止,iOS也会更新位置

[复制链接]
菜鸟教程小白 发表于 2022-12-13 05:31:10 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

即使应用程序终止,我也会尝试更新用户位置。我向我的 .plist 添加了 map 和后台模式 --> 位置更新,并设置了一个本地通知,该通知将在位置更新时触发。但它从未被解雇。我在 AppDelegat.h 中有这个:

@interface AppDelegate : UIResponder <CLLocationManagerDelegate>{
    CLLocationManager *locationManager;
}

AppDelegate.m

- (BOOL)applicationUIApplication*)application didFinishLaunchingWithOptionsNSDictionary*)launchOptions {

    locationManager = [[CLLocationManager alloc] init];
    locationManager.delegate = self;
    locationManager.distanceFilter = kCLDistanceFilterNone;
    locationManager.desiredAccuracy = kCLLocationAccuracyBest;
    [locationManager requestAlwaysAuthorization];
    [locationManager startMonitoringSignificantLocationChanges];
}

    - (void)locationManagerCLLocationManager *)manager 
    didUpdateLocationsNSArray *)locations {

 UILocalNotification *notification = [[UILocalNotification alloc]init];
notification.repeatInterval = NSDayCalendarUnit;
[notification setAlertBody"Location update!"];
[notification setFireDate:[NSDate dateWithTimeIntervalSinceNow:1]];
[notification setTimeZone:[NSTimeZone  defaultTimeZone]];
[[UIApplication sharedApplication] scheduleLocalNotification:notification];
    }

我在以高速公路驱动器为位置的模拟器上测试了此代码,但它不起作用。


编辑

如果我将代码放在 applicationDidEnterBackground 下,授权请求将在它打开的那一刻关闭,因为我正在使用 didFinishLaunchingWithOptions。我知道它是 24 小时跟踪位置,因为即使应用程序终止,也有 GPS 符号。


编辑 2

在我的手机上测试后,代码可以工作。它唤醒终止的应用程序并发送本地通知。它不适用于模拟器,但适用于现实生活(设备)



Best Answer-推荐答案


看起来您正在使用 CLLocationManagerDelegate 的已弃用函数:

-(void)locationManagerCLLocationManager *)manager 
        didUpdateToLocationCLLocation *)newLocation 
        fromLocationCLLocation *)oldLocation { 
}

相反,您应该实现

- (void)locationManagerCLLocationManager *)manager 
    didUpdateLocationsNSArray *)locations {
}

关于即使应用程序终止,iOS也会更新位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28788865/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap