使用 UIGuesture 调整 UIImageview 和 UITextview 的大小

发布于 2024-11-13 09:22:22 字数 247 浏览 4 评论 0原文

我是 iPhone 新手。我在 UIImageView 中有一个 UITextView 。现在我需要动态调整 UIImageView 的大小,以便其文本视图也动态更改其大小。此外,我可以在屏幕上移动这个 UIImageViewUITextView 。如果有人使用 UIGuesture 了解这一点,请帮助我。

任何帮助将不胜感激

I'm new in Iphone. I have an UITextView inside a UIImageView . Now I need to dynamically resize the UIImageView so that its textview also change its size dynamically. Moreover I can move this UIImageView with UITextView around the screen. If any one knows this using UIGuesture please help me.

Any help would be appreciated

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

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

发布评论

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

评论(1

蹲在坟头点根烟 2024-11-20 09:22:22
  1. 如果您要调整 UIImageView 对象的大小,请查看 UIPinchGestureRecognizer。它将有一个名为 scale 的属性,您可以使用它来更改其大小。
  2. 至于作为子视图的UITextView对象,您可以查看从UIView继承的autoresizingMask属性。适当地设置它,以便文本视图根据其超级视图进行缩放。
  3. 要移动图像视图,您可以使用UIPanGestureRecognizer。您可以使用 translationInView: 获取翻译。使用它来修改图像视图对象的中心。当您拖动手指时,这应该会移动图像视图。

我希望您已经完成了 指南。如果您在实现此功能时遇到问题,请告诉我们,并提供一些代码,以便我们可以引导您走向正确的方向。

  1. If you are looking at resizing the UIImageView object, look at the UIPinchGestureRecognizer. It will have a property called scale that you can use to change its size.
  2. As for the UITextView object that is the subview, you can look at autoresizingMask property inherited from UIView. Set it appropriately so that the text view scales in response to its super view.
  3. For moving the image view, you can use the UIPanGestureRecognizer. You can get the translation using translationInView:. Use this to modify the center of the image view object. This should move the image view as you drag your finger around.

I hope you've gone through the guide. Let us know if you face problems implementing this and put some code so that we can guide you in the right direction.

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