因此,我查看了 Apple 获取用户位置的示例代码。这对我来说很好,它的显示位置是正确的。
现在我想在我创建的名为“zipCode”的文本字段中显示邮政编码。我该怎么做?
试过:
- (void)locationManager:(CLLocationManager *)manager
didUpdateLocations:(NSArray *)locations {
CLLocation *location = [locations objectAtIndex:0];
NSLog(@"lat%f - lon%f", location.coordinate.latitude, location.coordinate.longitude);
zipCode.text = self.placemark.postalCode;
}
但这没有用。