私はgeocodeAddressString:completionHandler:
メソッドを使用しています。このメソッドは、CLPlacemarkの配列を返します。私は緯度、経度、ニーモニック名と半径を取得する必要があります。最初の3を得ることは簡単ですが:廃止予定のCLRegionメソッド - 半径の取得方法?
double lat = placemark.location.coordinate.latitude;
double lng = placemark.location.coordinate.longitude;
NSString *name = [NSString stringWithFormat:@"%@", ABCreateStringWithAddressDictionary(placemark.addressDictionary, NO)]
私はplacemark.region.radius
は廃止されると、今の半径を取得する方法がわかりません。代わりに今何を使うべきか?私はドキュメンテーションで十分興味深いものは見つけられません。
新しいクラスを。 https://developer.apple.com/library/ios/documentation/CoreLocation/Reference/CLRegion_class/DeprecationAppendix/AppendixADeprecatedAPI.html#//apple_ref/occ/instp/CLRegion/radius – danh
@danh旧地域からどのように移行すればいいですか?私はそれを開始していないのですか?キャスティングはむしろ助けにならないし、古い領域を新しいcircularRegionに変換する方法はありません。 – Vive