ストーリーボード iOS プロジェクトでマップ アノテーションを作成するために、以下を使用しました。
CLLocationCoordinate2D annotationCoord3;
annotationCoord3.latitude = 34.233129;
annotationCoord3.longitude = -118.998644;
MKPointAnnotation *annotationPoint3 = [[MKPointAnnotation alloc] init];
annotationPoint3.coordinate = annotationCoord3;
annotationPoint3.title = @"Another Spot";
annotationPoint3.subtitle = @"More than a Fluke";
[_mapView addAnnotation:annotationPoint3];
それはうまく機能しますが、新しいView Controllerにsequeをプッシュして画像を表示できるように、開示ボタンを追加したいと思います。これは可能ですか?
事前にthx、
--bd--