0
私は数百のMKPointAnnotationsを持つマップを持ち、左右のコールアウトアクセサリを持つように設定されています。問題は、その注釈に固有です特定のMKAnnotationに固有のイベントを実行する方法
たとえば、特定の注釈を押した場合、その注釈についての詳細な情報を持つ新しいviewControllerに移動したいとします。私は、すべてのデータは、このような...
@synthesize coordinate;
@synthesize _title;
@synthesize _date;
@synthesize _description;
@synthesize _coordinates;
- (CLLocationCoordinate2D)coordinate;{
CLLocationCoordinate2D theCoordinate;
theCoordinate.latitude = _coordinates.latitude;
theCoordinate.longitude = _coordinates.longitude;
return theCoordinate;
}
- (NSString *)title {
return _title;
}
- (NSString *)subtitle {
return _description;
}
- (void)dealloc {
[super dealloc];
[_description release];
[_date release];
[_title release];
}
として注釈に含まれているMKAnnotationに準拠したカスタムオブジェクトは、誰もがこれで私を助けてくださいすることができますセットアップを持っている:D
理にかなって、[OK]、および返信用のおかげで呼び出されますが、私はできない注釈に
を付属のボタンを追加します説明だけのタイトル、サブタイトル、コーディネイトなど、上記のカスタム注釈内の他の情報にアクセスしますか? –
FYIの字幕は説明です。あなたは注釈の字幕と座標にアクセスできないと言っていますか?しかし、注釈のタイトルだけにアクセスすることはできます。 – iPrabu