エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント1件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
CLGeocoderを使って郵便番号を住所に変換する - Qiita
#import <CoreLocation/CoreLocation.h> CLGeocoder *geocoder = [[CLGeocoder alloc] init]; [geocoder... #import <CoreLocation/CoreLocation.h> CLGeocoder *geocoder = [[CLGeocoder alloc] init]; [geocoder geocodeAddressString:@"100-0001" completionHandler:^(NSArray *placemarks, NSError *error) { CLPlacemark *placemark = placemarks.firstObject; NSString *prefectureString = placemark.administrativeArea; NSString *cityString = placemark.locality; NSString *streetString = placemark.subLocality; NSLog(@"Pre
2014/09/03 リンク