1. 調(diào)用CLLocation前, 添加以下代碼:
??? // 獲取授權(quán)
??? if ([UIDevice currentDevice].systemVersion.doubleValue >= 8.0)
??? {
??????? // 始終允許訪問(wèn)位置信息
??????? // [_manager requestAlwaysAuthorization];
??????? // 使用應(yīng)用程序期間允許訪問(wèn)位置信息
??????? [_manager requestWhenInUseAuthorization];
??? }