在xcode6中 苹果地图的定位方法修改了,如果直接用以前的将会出现下面这个错误:
报错说明:Trying to start MapKit location updates without prompting for location authorization. Must call -[CLLocationManager requestWhenInUseAuthorization] or -[CLLocationManager requestAlwaysAuthorization] first.
解决办法:
在Supporting Files下得info.plis里面添加NSLocationAlwaysUsageDescription 和 NSLocationWhenInUseDescription 两个String字段,value可以设置成要提示用户的字符串,如果问题还是不能解决,那就在info.plist中还需要包含Supported interface orientations 这个Array字段。然后运行就解决了