Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
現在のユーザーの場所を取得してそのユーザーに表示できるようになった iOS アプリを作成しています (CLLocationManager を使用)。位置精度も表示する方法はありますか?
ありがとう!
あなたのCLLocationManagerDelegate:
CLLocationManagerDelegate
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation { CLLocationAccuracy accuracy = newLocation.horizontalAccuracy; }