我有一张包含几百个 MKPointAnnotations 的地图,并且已设置为具有左右标注附件,我遇到的问题是找到一种方法来执行特定于该注释的操作
例如,如果有人按下特定的注释,我想转到一个新的 viewController,其中包含有关注释的详细信息。我已经设置了一个符合 MKAnnotation 的自定义对象,因此所有数据都包含在注释中......
@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];
}
谁能帮我解决这个问题:D