您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“IOS中城市定位的示例分析”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“IOS中城市定位的示例分析”這篇文章吧。
IOS 城市定位
前言:
獲取經緯度并且轉換成城市
iOS8定位失敗解決
獲取中文城市
1、建立簡單的項目, 導入CoreLoation.framework
:
2、在Info.plist
中加上NSLocationAlwaysUsageDescription
值為AlwaysLocation
:
3、使用CLLocationManager
對象進行定位:
_locationManger = [[CLLocationManager alloc] init]; _locationManger.delegate = self; [_locationManger requestAlwaysAuthorization];//iOS8需要加上,不然定位失敗 _locationManger.desiredAccuracy = kCLLocationAccuracyBest; //最精確模式 _locationManger.distanceFilter = 100.0f; //至少10米才請求一次數據 [_locationManger startUpdatingLocation]; //開始定位
4、在CLLocationManagerDelegate
代理方法(iOS8)中獲取定位信息并且轉換成中文城市:
- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error{ NSLog(@"定位失敗"); [_locationManger stopUpdatingLocation];//關閉定位 } - (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations{ NSLog(@"定位成功"); [_locationManger stopUpdatingLocation];//關閉定位 CLLocation *newLocation = locations[0]; NSLog(@"%@",[NSString stringWithFormat:@"經度:%3.5f\n緯度:%3.5f",newLocation.coordinate.latitude, newLocation.coordinate.longitude]); // 保存 設備 的當前語言 NSMutableArray *userDefaultLanguages = [[NSUserDefaults standardUserDefaults] objectForKey:@"AppleLanguages"]; // 強制 成 簡體中文 [[NSUserDefaults standardUserDefaults] setObject:[NSArray arrayWithObjects:@"zh-hans", nil nil] forKey:@"AppleLanguages"]; CLGeocoder * geoCoder = [[CLGeocoder alloc] init]; [geoCoder reverseGeocodeLocation:newLocation completionHandler:^(NSArray *placemarks, NSError *error) { for (CLPlacemark * placemark in placemarks) { NSDictionary *test = [placemark addressDictionary]; // Country(國家) State(城市) SubLocality(區) NSLog(@"%@", [test objectForKey:@"State"]); // 當前設備 在強制將城市改成 簡體中文 后再還原之前的語言 [[NSUserDefaults standardUserDefaults] setObject:userDefaultLanguages forKey:@"AppleLanguages"]; } }]; }
首次啟動時,會提示是否開啟定位并顯示NSLocationAlwaysUsageDescription
的值:
其中字典test的具體內容是:
以上是“IOS中城市定位的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。