ユーザーの場所のタップ イベントでタイトルを正常に表示できましたが、独自のカスタム アノテーションでは機能しません。タイトルを設定しようとしましたが、明示的には機能しません。どうすればこれを達成できますか?
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation {
MKPinAnnotationView *userMarkerView = nil;
PayMarkerAnnotationView *payMarkerView = nil;
if(annotation != mapView.userLocation)
{
payMarkerView = (PayMarkerAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:@"markerView"];
if(payMarkerView == nil) {
payMarkerView = [[PayMarkerAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"markerView"];
}
payMarkerView.annotation = annotation;
return payMarkerView;
}
else {
[mapView.userLocation setTitle:@"You are here"];
return userMarkerView;
}
}
クラス:
@interface PaymentMarker : NSObject <MKAnnotation> {
NSString* type;
NSString* address;
float latitude;
float longitude;
NSString* title;
}
@property (nonatomic, copy) NSString* address;
@property (nonatomic, copy) NSString* type;
@property (nonatomic) float latitude;
@property (nonatomic) float longitude;
@property (nonatomic, copy) NSString* title;
//MKAnnotation
@property (nonatomic, readonly) CLLocationCoordinate2D coordinate;
@end
- (id)initWithAnnotation:(id <MKAnnotation>)annotation reuseIdentifier:(NSString *)reuseIdentifier {
if(self = [super initWithAnnotation:annotation reuseIdentifier:reuseIdentifier]) {
self.backgroundColor = [UIColor clearColor];
NSString* imageName;
if ([annotation isMemberOfClass:[PaymentMarker class]])
{
PaymentMarker *pm = (PaymentMarker *)self.annotation;
if([pm.type isEqualToString:@"nzpost"]) {
imageName = @"icon-map-post.png";
} else {
imageName = @"icon-map-incharge.png";
}
self.image = [UIImage imageNamed:imageName];
}
}
return self;
}