MKMapView에 추가 할 주석을 만들었습니다. 표준 적색 핀 대신 사용자 정의 이미지를 갖는 방법은 무엇입니까?MKAnnotation의 사용자 지정 이미지
@interface AddressAnnotation : NSObject<MKAnnotation> {
CLLocationCoordinate2D coordinate;
NSString *title;
NSString *subtitle;
MKPinAnnotationColor pinColor;
}
@property (nonatomic,retain) NSString *title;
@property (nonatomic,retain) NSString *subtitle;
@property (nonatomic, assign) MKPinAnnotationColor pinColor;
@end
이 작업을 수행하는 방법에 대한 예제를 가르쳐 주시겠습니까? 나는 객관적으로 새로운 c 다. 감사 – 3sl