最近項(xiàng)目中有需要通過(guò)當(dāng)前位置來(lái)獲取天氣的需求饿悬,下面說(shuō)說(shuō)實(shí)現(xiàn)方法
- 導(dǎo)入 CoreLocation 框架以及頭文件
#import <CoreLocation/CoreLocation.h>
- 創(chuàng)建CLLocationManager對(duì)象并設(shè)置代理
<CLLocationManagerDelegate>
// 初始化定位管理器
_locationManager = [[CLLocationManager alloc] init];
// 設(shè)置代理
_locationManager.delegate = self;
// 設(shè)置定位精確度到米
_locationManager.desiredAccuracy = kCLLocationAccuracyBest;
// 設(shè)置過(guò)濾器為無(wú)
_locationManager.distanceFilter = kCLDistanceFilterNone;
// 取得定位權(quán)限,有兩個(gè)方法聚霜,取決于你的定位使用情況
// 一個(gè)是requestAlwaysAuthorization狡恬,一個(gè)是requestWhenInUseAuthorization
// 這句話ios8以上版本使用。
[_locationManager requestAlwaysAuthorization];
// 開(kāi)始定位
[_locationManager startUpdatingLocation];
- 在iOS8以上的系統(tǒng)還需要在 plist 文件中添加以下key來(lái)配置
Privacy - Location Always Usage Description
Privacy - Location When In Use Usage Description
里面的值可以自己添加
-
如果想開(kāi)啟后臺(tái)定位的話蝎宇,需要按照以下步驟設(shè)置
- 在對(duì)應(yīng)的代理方法中獲取到我們需要的位置信息
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
在此代理方法中我們可以獲取到當(dāng)前位置的經(jīng)緯度
//獲取經(jīng)度
//self.longitude.text = [NSString stringWithFormat:@"%lf", newLocation.coordinate.longitude];
//獲取維度
//self.latitude.text = [NSString stringWithFormat:@"%lf", newLocation.coordinate.latitude];
獲取當(dāng)前位置所在的市信息
// 獲取當(dāng)前所在的城市名
CLGeocoder *geocoder = [[CLGeocoder alloc] init];
//根據(jù)經(jīng)緯度反向地理編譯出地址信息
[geocoder reverseGeocodeLocation:newLocation completionHandler:^(NSArray *array, NSError *error){
if (array.count > 0){
CLPlacemark *placemark = [array objectAtIndex:0];
//獲取當(dāng)前城市
NSString *city = placemark.locality;
if (!city) {
//注意:四大直轄市的城市信息無(wú)法通過(guò)locality獲得弟劲,只能通過(guò)獲取省份的方法來(lái)獲得(如果city為空,則可知為直轄市)
city = placemark.administrativeArea;
}
NSArray *array = [city componentsSeparatedByString:@"市"];
NSString *cityStr = array[0];
NSString * cityEncode = (NSString *)CFBridgingRelease(CFURLCreateStringByAddingPercentEscapes( kCFAllocatorDefault, (CFStringRef)cityStr, NULL, NULL, kCFStringEncodingUTF8 ));
//這里我把獲取到的地址信息利用NSUserDefaults保存起來(lái)姥芥,后面會(huì)用到
NSMutableDictionary *dic = [NSMutableDictionary new];
[dic setValue:cityEncode forKey:@"city"];
[[NSUserDefaults standardUserDefaults] setObject:dic forKey:@"cityName"];
[[NSUserDefaults standardUserDefaults] synchronize];
}
else if (error == nil && [array count] == 0) {
NSLog(@"沒(méi)有結(jié)果返回.");
}
else if (error != nil) {
//NSLog(@"An error occurred = %@", error);
}
}];
- 系統(tǒng)會(huì)在后臺(tái)一直更新定位數(shù)據(jù)兔乞,如果只需要獲取一次信息可以在信息獲取完畢之后停止更新
[manager stopUpdatingLocation];