在 UIImage 视图中的图像上绘制折线
我想在 UIImageView 中绘制折线并加载图像。
有人可以给我一些从哪里开始的建议吗?
谢谢
I want to draw polylines over and image loaded in an UIImageView.
Can someone give me some tips on where to start?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要绘制多边形,您应该使用位于 UIView 子类中的 drawRect 方法。
所以有 2 个解决方案:
1°) 你继承 UIImageView 并在drawRect中绘制你的图像并绘制你的折线
2°)您有一个 UIImageView ,顶部有一个 UIView 子类,您可以在其中绘制折线
绘制折线不会成为问题(您应该在堆栈上找到答案)。
(就像这里:iPhone 上的多线)
To draw polygon you should use the drawRect method located in UIView subclass.
So 2 solutions :
1°) You subclass UIImageView and in drawRect you draw your image and draw your polylines then
2°) You have an UIImageView and on the top an UIView subclass where you draw your polylines
Drawing the polylines won't be a problem (you should find an answer on stack).
(like here : polyines on iphone)