ios8的定位,蓝牙与ios7的区别

  以前程序的地理定位功能在iOS8 版上不能工作了(也可能其它beta版也不工作),查询GPS授权情况,返回的是CLAuthorizationStatus.NotDetermined,意思是授权状态未定。

  根据文档,需要在使用CoreLocation前调用方法

1
requestWhenInUseAuthorization()
或者

1
requestAlwaysAuthorization()
并在Info.plist中加入两个缺省没有的字段

NSLocationAlwaysUsageDescription

NSLocationWhenInUseUsageDescription

这两个字段没什么特别的意思,就是自定义提示用户授权使用地理定位功能时的提示语。
比如
Hibeacons项目
https://github.com/nicktoumpelis/HiBeacons

Supporting Files中
设置
NSLocationAlwaysUsageDescription
value
always ok?
如图
[img]http://dl2.iteye.com/upload/attachment/0101/7253/3b7f5988-bde6-35c4-a00f-d13093f70338.jpg[/img]

在NATViewController.m中
加一句[color=red][self.locationManager requestAlwaysAuthorization];[/color]
- (void)createLocationManager
{
[self.locationManager requestAlwaysAuthorization];
if (!self.locationManager) {
self.locationManager = [[CLLocationManager alloc] init];
self.locationManager.delegate = self;
}
}



还有另一个例子
<<iBeacons的编程例子>>
http://www.chinaibeacons.com/index.php?a=shows&catid=4&id=20
需要修改
ViewController.m
中的
在新建locationManger之后调用
[color=red][self.locationManager requestAlwaysAuthorization];[/color]

- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
// Initialize location manager and set ourselves as the delegate
self.locationManager = [[CLLocationManager alloc] init];
[self.locationManager requestAlwaysAuthorization];
self.locationManager.delegate = self;

还有就是一定要注意把plist中加上
[color=red]NSLocationWhenInUseUsageDescription 属性,否则还是不好使[/color]

参考
http://blog.csdn.net/xcysuccess3/article/details/39379011
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值