改变引脚设计
是否可以将 MKAnnotation pin 更改为我自己设计的 png?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以将 MKAnnotation pin 更改为我自己设计的 png?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
重写它并成为 MKMapViewDelegate 的委托来实现重写该方法。
创建注释,
自定义图像完成
override this and be a delegate of MKMapViewDelegate to implement override the method.
Create an annotation,
Custom image done
是的,在 viewForAnnotation 委托回调中,您可以提供您喜欢的任何视图。
Yes, in the viewForAnnotation delegate callback you can provide whatever view you like.
对于自定义注释图像,请设置图像属性。
请注意 MKPinAnnotationView animateDrop 属性不适用于自定义图像。不过,有一种方法可以复制该动画。请参阅如何制作 MKAnnotationView 放置动画?
For custom annotation image, set the image property, as such.
Do note that the MKPinAnnotationView animateDrop property will not work on custom images. There's a way to duplicate that animation though. See How do I animate MKAnnotationView drop?