我有一个显示用户位置的经度和纬度的应用程序。应用程序会询问当前位置,并在 Xcode 中显示纬度和经度。但在应用程序中,什么也没有发生。
这是我的代码:
- (NSString *)deviceLocation {
NSString *theLocation =
[NSString stringWithFormat:@"latitude: %f longitude: %f",
locationManager.location.coordinate.latitude,
locationManager.location.coordinate.longitude];
return theLocation;
}
在 viewDidLoad 中:
locationManager = [[CLLocationManager alloc] init];
locationManager.distanceFilter = kCLDistanceFilterNone; // whenever we move
locationManager.desiredAccuracy = kCLLocationAccuracyHundredMeters; // 100 m
[locationManager startUpdatingLocation];
NSLog(@"%@", [self deviceLocation]);
问题是纬度和经度标签不会显示位置。