ios定位问题

在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可以为空,也可以设置YES,不过我得问题还是不能解决,最终还是找到得了问题所在,就是info.plist中还需要包含Supported

interface orientations这个Array字段。然后运行就解决了

你可能感兴趣的:(ios定位问题)