可缩放图形

发布于 2024-11-05 06:47:26 字数 83 浏览 2 评论 0原文

我正在尝试在屏幕上绘制可缩放图形。我目前在 ScrollView 中有一个 UIView,我想知道处理/实现我在屏幕上绘制的图形的缩放的最佳方法是什么。

I am trying to draw zoomable graphics onto the screen. I currently have a UIView inside of a ScrollView and I'm wondering what the best way is to go about handling/implementing zooming of the graphics I've drawn on the screen.

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

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

发布评论

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

评论(1

初见终念 2024-11-12 06:47:26

您可能想要使用我在答案中描述的内容这里

在捏缩放事件期间,变换将应用于您的 UIView,这将缩放内容,但会导致模糊。缩放事件完成后,使用 -scrollViewDidEndZooming:withView:atScale: 委托方法来确定新的比例因子,并适当地调整大小并重新渲染 UIView。如果您在 UIView 的 -drawRect: 方法中使用 Core Graphics 进行绘图,那么这应该很容易管理。

You'll probably want to use something along the lines of what I describe in my answer here.

During the pinch-zooming event, a transform will be applied to your UIView, which will zoom the content but will lead to blurring. Once the zooming event is finished, use the -scrollViewDidEndZooming:withView:atScale: delegate method to determine the new scale factor and resize and re-render your UIView appropriately. If you're doing your drawing using Core Graphics within the -drawRect: method of your UIView, this should be pretty easy to manage.

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