9 #import <UIKit/UIKit.h>
33 - (id)initWithAnnotation:(
id<
OIMAnnotation>)annotation reuseIdentifier:(NSString *)reuseIdentifier;
48 @property (nonatomic, strong) id<OIMAnnotation> annotation;
53 @property (nonatomic, strong) UIImage *
image;
68 @property (nonatomic, getter=isEnabled) BOOL
enabled;
70 @property (nonatomic, getter=isHighlighted) BOOL highlighted;
75 @property (nonatomic, getter=isSelected) BOOL
selected;
76 - (void)setSelected:(BOOL)selected animated:(BOOL)animated;
NSString * reuseIdentifier
复用标识
Definition: OIMAnnotationView.h:38
CGPoint calloutOffset
默认情况下, 弹出的气泡位于view正中上方,可以设置calloutOffset改变view的位置,正的偏移使view朝右下方移动,负的朝左上方,单位是像素
Definition: OIMAnnotationView.h:63
BOOL enabled
默认为YES,当为NO时view忽略触摸事件
Definition: OIMAnnotationView.h:68
UIImage * image
显示的image
Definition: OIMAnnotationView.h:53
CGPoint centerOffset
默认情况下, annotation view的中心位于annotation的坐标位置,可以设置centerOffset改变view的位置,正的偏移使view朝右下方移动,负的朝左上方,单位是像素 ...
Definition: OIMAnnotationView.h:58
void prepareForReuse()
当从reuse队列里取出时被调用, 子类重新必须调用super.
标注view
Definition: OIMAnnotationView.h:25
BOOL selected
设置是否处于选中状态, 外部如果要选中请使用mapView的selectAnnotation方法。
Definition: OIMAnnotationView.h:75
该类为标注点的protocol,提供了标注类的基本信息函数
Definition: OIMAnnotation.h:17