我有一个MKMapView
要添加的MKAnnotations
. 当它们显示在地图上时,它们使用MKAnnotationView
带有(UIImage *)image
属性的自定义注释视图。如果我现在使用该方法
创建一个动画并将其分配给 的属性,则显示的注释视图不是动画的。我在文档中
找不到任何禁止为此属性分配动画的内容,也找不到任何动画。
抱歉,没有太多代码可以显示:只需设置注释视图,并为其属性分配一个动画图像:
分配并使用
Then初始化UIImage
+(UIImage *)animatedImageNamed:(NSString *)name duration:(NSTimeInterval)duration
image
MKAnnotationView
UIImage
image
image
MKAnnotationView *customAnnotationView
initWithAnnotation:reuseIdentifier:
customAnnotationView.image = [UIImage animatedImageNamed:name duration:duration];
有什么我错过的或者只是文档中缺少的提示,或者我有什么问题吗?