私は Xcode の初心者です。現在の場所ではなく、ピンを使用して他の場所を表示したいです。緯度と経度の値があります。現在の場所のみを表示するマップ ビューを使用しています。
-(void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
self.mapView.delegate=self;
[self.mapView setShowsUserLocation:YES];
locationmanager=[[CLLocationManager alloc]init];
[locationmanager setDelegate:self];
[locationmanager setDistanceFilter:kCLDistanceFilterNone];
[locationmanager setDesiredAccuracy:kCLLocationAccuracyBest];
}