绘制一条直线并在 UIImageView 移动时刷新它

发布于 2024-10-20 21:29:08 字数 112 浏览 1 评论 0原文

如何在两个 UIImageView 之间绘制一条直线,并在其中一个视图移动时使该线“刷新”。我想我必须使用 NSNotificationCenter,但除此之外我有点卡住了。

感谢您的帮助!!!

How can I draw a straight line between two UIImageViews and have the line "refresh" if one of the views is moved. I assume I'll have to use NSNotificationCenter, but other then that I'm a bit stuck.

Thanks for your help!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温柔戏命师 2024-10-27 21:29:08

一个好的方法是使用 KVO(键值观察)。

如果您使用 KVO 来监视视图边界(或框架)的变化,您将收到有关位置变化的通知,此时您可以在显示器上(重新)渲染一条线。

有关 KVO 的更多信息: https://stackoverflow.com/questions/1470167/is-there-any-tutorial-out-there-on-key-value-coding-and-key-value-observing

至于渲染一条线:一常用的技术是编写 UIView 的子类,在其中重写 drawRect 方法并使用 Core Graphics 绘制一条线。请参阅此问题:如何在 iPhone 上画线?

A good way to do this would be to use KVO (Key-Value Obverving).

If you use KVO to watch for changes in the bounds (or frame) of the views, you will get notified about position changes, at which point you can (re-)render a line on the display.

More about KVO: https://stackoverflow.com/questions/1470167/is-there-any-tutorial-out-there-on-key-value-coding-and-key-value-observing

As for rendering a line: one often used technique is to write a subclass of UIView in which you override the drawRect method and draw a line using Core Graphics. See this question: How do I draw a line on the iPhone?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文