1. 调用CLLocation前, 添加以下代码:
// 获取授权
if ([UIDevice currentDevice].systemVersion.doubleValue >= 8.0)
{
// 始终允许访问位置信息
// [_manager requestAlwaysAuthorization];
// 使用应用程序期间允许访问位置信息
[_manager requestWhenInUseAuthorization];
}
1. 调用CLLocation前, 添加以下代码:
// 获取授权
if ([UIDevice currentDevice].systemVersion.doubleValue >= 8.0)
{
// 始终允许访问位置信息
// [_manager requestAlwaysAuthorization];
// 使用应用程序期间允许访问位置信息
[_manager requestWhenInUseAuthorization];
}