在 iOS8 中提示位置授权
Posted
技术标签:
【中文标题】在 iOS8 中提示位置授权【英文标题】:prompting for location authorization in iOS8 【发布时间】:2015-01-15 07:37:33 【问题描述】:我在这个网站、苹果开发网站和无数的 YouTube 视频上查看了其他类似的问题,但我仍然无法弄清楚这一点。在 Xcode/ios8 中获取用户位置的信息似乎很少。
我有一个工作正常的地图视图,但当我单击按钮获取我的位置时,没有任何反应,并且在我看到的日志中
尝试在不提示位置授权的情况下启动 MapKit 位置更新。必须先致电
-[CLLocationManager requestWhenInUseAuthorization]
或-[CLLocationManager requestAlwaysAuthorization]
。
我不明白我做错了什么。我对编程很陌生,我看到的所有信息对我来说都没有多大意义。
我在我的应用中使用故事板,具体代码如下:
mapViewController.h
#import <UIKit/UIKit.h>
#import <MapKit/MapKit.h>
#import <CoreLocation/CoreLocation.h>
@interface mapViewController : UIViewController
MKMapView *mapview;
@property (nonatomic, retain) IBOutlet MKMapView *mapview;
-(IBAction)setMap:(id)sender;
-(IBAction)getCurrentLocation:(id)sender;
@property (nonatomic, retain) IBOutlet CLLocationManager *locationManager;
@end
mapViewController.m
#import "mapViewController.h"
@interface mapViewController ()
@end
@implementation mapViewController
CLLocationManager *locationManager;
@synthesize mapview;
- (void)viewDidLoad
[super viewDidLoad];
// Do any additional setup after loading the view.
self.locationManager.delegate=self;
self.locationManager.desiredAccuracy = kCLLocationAccuracyBest;
self.locationManager.requestWhenInUseAuthorization;
- (void)didReceiveMemoryWarning
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
-(IBAction)setMap:(id)sender
switch (((UISegmentedControl *) sender).selectedSegmentIndex)
case 0:
mapview.mapType = MKMapTypeStandard;
break;
case 1:
mapview.mapType = MKMapTypeSatellite;
break;
case 2:
mapview.mapType = MKMapTypeHybrid;
break;
default:
break;
-(IBAction)getCurrentLocation:(id)sender
mapview.showsUserLocation = YES;
@end
我已经为此苦苦挣扎了很长时间,以至于我的头发都被扯掉了。谁能指出我哪里出错了?
【问题讨论】:
【参考方案1】:错误信息不言自明。
首先,您没有在viewDidLoad
中初始化CLLocationManager
。您可以使用(在delegate
行之前)进行初始化:
self.locationManager = [[CLLocationManager alloc] init];
然后,您必须使用[self.locationManager requestWhenInUseAuthorization]
或[self.locationManager requestAlwaysAuthorization]
请求位置服务。 (不要忘记在Info.plist
中添加相应的使用描述键)。
最后,您必须检查用户授权的响应。如果用户拒绝授权,您不应启动任何与定位服务相关的操作,直到您再次询问。
更新如果您也支持 iOS 7,代码会略有不同。
【讨论】:
您好,非常感谢,我现在已经开始工作了。我遇到的另一个问题是我设置的用于获取用户位置的按钮似乎不起作用。我已经连接到按钮,所以当它被点击时,它指的是 getCurrentLocation 但没有任何反应。我有什么遗漏吗? 是的,您的代表可能写得不好。但是,这是一个单独的问题,您可以打开一个新问题,我会提供帮助。 (提示:用@标记我,后跟名字)最后,如果你觉得这个问题有帮助,请使用向上箭头和问题左侧的勾号图标投票并接受答案。 谢谢,我会提出一个新问题,它不会让我投票,因为我需要至少 15 个代表,但是一旦我达到那个级别,我会回来做的 嘿猛禽,我不知道如何标记你,我提出了一个新问题:***.com/q/27976933/4456507 知道了。会调查的。以上是关于在 iOS8 中提示位置授权的主要内容,如果未能解决你的问题,请参考以下文章