首页 > 系统 > iOS > 正文

iOS百度地图更新位置

2019-11-07 23:29:20
字体:
来源:转载
供稿:网友

程序中多处用到百度地图,会遇到无法实时更新位置的情况,这时候我们只需要在用到的页面重新启动下服务即可

- (void)viewWillAppear:(BOOL)animated

{

    if (_locService != nil) {

        [_locService startUserLocationService];

    }

}

- (void)viewWillDisappear:(BOOL)animated

{

    [_locService stopUserLocationService];

}


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表