2
正しく書かれた国名に基づいてCLRegion
またはCLLocationCoordinate2D
または緯度/経度ポイントを抽出するにはどうすればよいですか? CLGeocoder
このように動作します:国名からの座標/地域
CLGeocoder *geoCode = [[CLGeocoder alloc] init];
[geoCode geocodeAddressString:@"Singapore" completionHandler:^(NSArray *placemarks, NSError *error) {
if (!error) {
CLPlacemark *place = [placemarks objectAtIndex:0];
NSLog(@"%i,%i", place.//what would i put here);
}
}];
アドレスを伝えるCLPlacemark
ホールドを何変数?