最近看別人都寫簡書,覺得好高大上的樣子碉纺,覺得像我這樣作文水平告別及格的人,基本上就告別寫文章了刻撒。問了下我的基友們(他們都是程序員骨田,寫的是技術(shù)文章),都說主要是給自己看声怔,怕忘記态贤。好吧,我也怕忘記醋火,寫一篇試試吧抵卫,反正是自己看狮荔,也順便改善自己寫代碼不求甚解的不良習(xí)慣。
ps:這篇文主要是用系統(tǒng)自帶的地圖介粘,獲取殖氏,地理位置編碼,然后反編碼獲取地理位置信息(這里是城市信息)
?一姻采、準(zhǔn)備工作
1雅采、在info.plist里面添加權(quán)限(首先要?App Transport Security Settings (字典類型),然后在該項(xiàng)下慨亲,再添加我下面說的類型)
a婚瓜、Privacy - Location When In Use Usage Description(在使用從應(yīng)用程序期間獲取位置信息,我用的是這個(gè))
b刑棵、Privacy - Location Always Usage Description(每次啟用的時(shí)候巴刻,都要問問用戶)
c、Privacy - Location Usage Description(這個(gè)據(jù)說是用戶一旦選擇拒絕蛉签,以后應(yīng)用程序都不會使用用戶的位置胡陪,也不會提示)
2、在Build Phases添加CoreFoundation的基礎(chǔ)庫
?二碍舍、代碼
1柠座、引入頭文件
#import<CoreLocation/CoreLocation.h> //地理定位相關(guān)
2、屬性
@property(nonatomic,strong)CLLocationManager *manager;
@property(nonatomic,strong)CLLocation *location;
3片橡、代碼
#pragma mark- Location- 定位服務(wù)
- (void)getLocation{
_manager = [[CLLocationManager alloc]init];
//設(shè)置代理
_manager.delegate=(id)self;
//設(shè)置定位精度
_manager.desiredAccuracy = kCLLocationAccuracyKilometer;
//定位頻率,每隔多少米定位一次
CLLocationDistance distance=10.0f;//十米定位一次
_manager.distanceFilter=distance;
if (![CLLocationManager locationServicesEnabled]) {
//? ? ? ? [self showError:@"定位服務(wù)當(dāng)前可能尚未打開"];
return;
}
if ([CLLocationManager authorizationStatus] == kCLAuthorizationStatusNotDetermined){
//ios8
if ([[UIDevice currentDevice].systemVersion floatValue]>=8.0) {
[_manager requestWhenInUseAuthorization];
//? ? ? ? ? ? [_manager requestAlwaysAuthorization];
}
//ios9
//? ? ? ? ? ? ? ? if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 9.0) {
//? ? ? ? ? ? ? ? ? ? _manager.allowsBackgroundLocationUpdates = YES;
//? ? ? ? ? ? ? ? }
}else if([CLLocationManager authorizationStatus] == kCLAuthorizationStatusAuthorizedWhenInUse){
}
//啟動跟蹤定位
[_manager startUpdatingLocation];
}
4妈经、獲取位置之后的回調(diào)
#pragma mark-CLLocationManagerDelegate? 位置更新后的回調(diào)
-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
{
//停止位置更新
[_manager stopUpdatingLocation];
//此處locations存儲了持續(xù)更新的位置坐標(biāo)值,取最后一個(gè)值為最新位置捧书,如果不想讓其持續(xù)更新位置吹泡,則在此方法中獲取到一個(gè)值之后讓locationManager stopUpdatingLocation
_location = [locations lastObject];
// 獲取當(dāng)前所在的城市名
CLGeocoder *geocoder = [[CLGeocoder alloc] init];
//根據(jù)經(jīng)緯度反向地理編譯出地址信息
[geocoder reverseGeocodeLocation:_location completionHandler:^(NSArray *array, NSError *error)
{
if (array.count > 0)
{
CLPlacemark *placemark = [array objectAtIndex:0];
//將獲得的所有信息顯示到label上
//? ? ? ? ? ? NSLog(@"placemark.name=%@,placemark.thoroughfare=%@,locality= %@,subLocality= %@,administrativeArea=%@,subAdministrativeArea= %@,postalCode = %@,ISOcountryCode= %@,country= %@,inlandWater=%@,ocean=%@",placemark.name,placemark.thoroughfare,placemark.locality,placemark.subLocality,placemark.administrativeArea,placemark.subAdministrativeArea,placemark.postalCode,placemark.ISOcountryCode,placemark.country,placemark.inlandWater,placemark.ocean);
//這是打印出來的信息2016-10-17 14:48:54.453 NewLive[7475:2760978] placemark.name=中國上海市長寧區(qū)虹橋街道中山西路1011號,placemark.thoroughfare=中山西路,locality= 上海市,subLocality= 長寧區(qū),administrativeArea=上海市,subAdministrativeArea= (null),postalCode = (null),ISOcountryCode= CN,country= 中國,inlandWater=(null),ocean=(null)
//獲取城市
NSString *city = placemark.locality;
if (!city) {
//四大直轄市的城市信息無法通過locality獲得,只能通過獲取省份的方法來獲得(如果city為空经瓷,則可知為直轄市)
city = placemark.administrativeArea;
}
//? ? ? ? ? ? if (![NSString isEmpty:city]) {
//? ? ? ? ? ? ? ? NSString *searchString = city;
//? ? ? ? ? ? ? ? if (city.length>1) {
//? ? ? ? ? ? ? ? ? ? NSString *temp = [city substringFromIndex:(city.length-1)];
//? ? ? ? ? ? ? ? ? ? if ([@"市" isEqualToString:temp]) {
//? ? ? ? ? ? ? ? ? ? ? ? searchString = [city substringToIndex:(city.length-1)];
//? ? ? ? ? ? ? ? ? ? }
//? ? ? ? ? ? ? ? }
//? ? ? ? ? ? ? ? [MXEncryptionKeyStore storeKeyForeEncryption:searchString andWitchKey:LocationCity];
//? ? ? ? ? ? }
//? ? ? ? ? ? self.cityName = city;
}
else if (error == nil && [array count] == 0)
{
NSLog(@"No results were returned.");
}
else if (error != nil)
{
NSLog(@"An error occurred = %@", error);
}
}];
//系統(tǒng)會一直更新數(shù)據(jù)荞胡,直到選擇停止更新,因?yàn)槲覀冎恍枰@得一次經(jīng)緯度即可了嚎,所以獲取之后就停止更新
}