IOS APP 遇到的各种错误

  1. 使用Map View的时候,会出错,

    原因:没有导入MapKit.framework

  2. [AMapLocationKit] 要在iOS 9及以上版本使用后台定位功能, 需要保证"Background Modes"中的"Location updates"处于选中状态。

    <key>NSLocationAlwaysUsageDescription</key>

    <string>GPS闹铃</string>

    <key>UIBackgroundModes</key>

    <array>

        <string>location</string>

    </array>

3.取经纬度的网址

http://api.map.baidu.com/lbsapi/getpoint/


4.自己瞎搞了半天怎么定位,之前是知道的,也写demo了,但是电脑出问题后,代码就没了。结果慢慢就给忘了怎么写了。

有一个博客能记录简单的demo程序是很有必要的。


你可能感兴趣的:(IOS APP 遇到的各种错误)