Xcode 用户位置在较新版本中不再有效 (Objective-C)
Xcode user location no longer working in newer version (Objective-C)
我有一个移动到用户位置的按钮。我在 ViewControler.h 中声明它,然后将以下代码添加到 ViewController.m:
- (IBAction)userLocation:(id)sender {
[_mapView setCenterCoordinate:_mapView.userLocation.location.coordinate animated:YES];
}
这一直引导我到 (0,0) 坐标。我需要在较新的 Xcode 版本中添加一些内容才能使它再次运行吗?
因为 iOS8 您必须为定位服务设置使用说明:
我有一个移动到用户位置的按钮。我在 ViewControler.h 中声明它,然后将以下代码添加到 ViewController.m:
- (IBAction)userLocation:(id)sender {
[_mapView setCenterCoordinate:_mapView.userLocation.location.coordinate animated:YES];
}
这一直引导我到 (0,0) 坐标。我需要在较新的 Xcode 版本中添加一些内容才能使它再次运行吗?
因为 iOS8 您必须为定位服务设置使用说明: