我试图强制重置我的设备,但没有运气.
我在info.pList中添加了这两个值,这是iOS 8及以上版本的要求
<key>NSLocationAlwaysUsageDescription</key><string>Location is required to find out where you are</string><key>NSLocationWhenInUseUsageDescription</key><string>Location is required to find out where you are</string>
并在我的VIEwdIDload中添加了这行代码.
// Check for iOS 8. Without this guard the code will crash with "unkNown selector" on iOS 7. if ([self.locationManager respondsToSelector:@selector(requestWhenInUseAuthorization)]) { [self.locationManager requestWhenInUseAuthorization]; //[self.locationManager requestAlwaysAuthorization]; self.myMapVIEw.showsUserLocation = YES; }
通过在info.pList和上述代码行中添加这两个值,我可以在用户位置的地图上显示用户的位置和注释,但Map是Blank.
类似于这篇文章:
@L_502_0@
以上是内存溢出为你收集整理的ios8 – MKMapView在iOS 8或更高版本中不呈现全部内容,希望文章能够帮你解决ios8 – MKMapView在iOS 8或更高版本中不呈现所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)