标签:ios8 定位
需要在Info.plist 里面添加:
NSLocationWhenInUseUsageDescription
NSLocationAlwaysUsageDescription
然后在需要定位的地方添加以下代码:
[self.locationManager requestWhenInUseAuthorization]
[self.locationManager requestAlwaysAuthorization]
由于以上代码需要 iOS8以上,所以最好还要加一个 SDK >= 8.0 的判断
标签:ios8 定位
原文地址:http://blog.csdn.net/u014202635/article/details/45696659