MKAnnotation に画像を追加しようとしています。以下のコードがあります。これに @"map_icon.png" を追加するにはどうすればよいですか? どんな助けでも素晴らしいでしょう。ありがとうございました!
mapView.m ファイル:
// retrieve latitude and longitude from the dictionary entry
location.latitude = [dictionary[@"placeLatitude"] doubleValue];
location.longitude = [dictionary[@"placeLongitude"] doubleValue];
// create the annotation
newAnnotation = [[MapViewAnnotation alloc] initWithTitle:dictionary[@"name"]
andCoordinate:location];
MapViewAnnotation.m ファイル
- (id)initWithTitle:(NSString *)ttl andCoordinate:(CLLocationCoordinate2D)c2d
{
title = ttl;
coordinate = c2d;
return self;
}
ありがとうございました!