objective-c - 定位不回呼代理方法
阿神
阿神 2017-05-02 09:24:24
0
0
427

// 判斷定位操作是否被允許

if([CLLocationManager locationServicesEnabled]) {
    //定位初始化
    _locationManager=[[CLLocationManager alloc] init];
    _locationManager.delegate=self;
    _locationManager.desiredAccuracy=kCLLocationAccuracyBest;
    _locationManager.distanceFilter=10;
    if ([[UIDevice currentDevice].systemVersion intValue]>=8) {
        [_locationManager requestWhenInUseAuthorization];//使用程序其间允许访问位置数据(iOS8定位需要)
    }
    [_locationManager startUpdatingLocation];//开启定位
}else {
    //提示用户无法进行定位操作
    UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:@"提示" message:@"定位失败,请确认开启定位..." delegate:nil cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];
    [alertView show];
}

**

回呼方法(iPhone4s,5, 不會回調該方法,iphone5s 及其以上就可以,系統都是 ios9.2,xcode7.2模擬器測試)跪求大神解答!!!!

**
-(void)locationManager:(CLLocationManager )manager didUpdateLocations:(NSArray )locations

阿神
阿神

闭关修行中......

全部回覆(0)
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!