के लिए कस्टम छवि मैंने एक एनोटेशन बनाया है जिसे मैं एक एमकेमैपव्यू में जोड़ रहा हूं। मैं मानक लाल पिन की बजाय कस्टम छवि के बारे में कैसे जाउंगा?एमकेएनोटेशन
@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
क्या आप मुझे ऐसा करने के उदाहरण के बारे में बता सकते हैं? मैं उद्देश्य सी के लिए नया हूँ। धन्यवाद – 3sl