美文网首页iOS-OC初级代码改变世界
iOS8定位应用失败(iOS8:Location Service

iOS8定位应用失败(iOS8:Location Service

作者: iStig | 来源:发表于2015-02-03 17:57 被阅读359次

    如果是xcode6和iOS8的话,需要调用 CLLocationManager requestAlwaysAuthorization 方法,具体步骤如下:

    1. @interface里:
    CLLocationManager *locationManager;
    2. 初始化:
    locationManager = [[CLLocationManager alloc] init];
    3. 调用请求:
    [locationManager requestAlwaysAuthorization];
    [locationManager startUpdatingLocation];
    4. 在 info.plist里加入:
    NSLocationWhenInUseDescription,允许在前台获取GPS的描述
    NSLocationAlwaysUsageDescription,允许在后台获取GPS的描述
    Privacy - Location Usage Description 该配置告诉用户使用的目的,同时这个配置是可选的。
    ps:调用请求前加上ios版本判断就完美了。

    完美一下:

    // 判斷是否 iOS 8
    if([self.locationManager respondsToSelector:@selector(requestAlwaysAuthorization)]) {
    [self.locationManager requestAlwaysAuthorization]; // 永久授权
    [self.locationManager requestWhenInUseAuthorization]; //使用中授权
    }
    [self.locationManager startUpdatingLocation];
    

    参考:

    iOS 8 适配的几点总结

    相关文章

      网友评论

        本文标题:iOS8定位应用失败(iOS8:Location Service

        本文链接:https://www.haomeiwen.com/subject/kcdrxttx.html