如何调整 UIView 的横向方向?

发布于 2024-12-10 02:54:14 字数 201 浏览 0 评论 0原文

我有一个 UITableViewController ,其中有一个自定义 UIView 作为子视图。当我将 iPhone 从纵向旋转到横向时,UIView 子视图可以正确旋转,但无法正确调整大小。 当设备旋转时,如何调整自定义 UIView 的大小?

I have a UITableViewController with a custom UIView as a subview. When I rotate the iPhone from portrait to landscape orientation the UIView subview rotates correctly but does not resize correctly. How can I resize the custom UIView when the device is rotated?

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

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

发布评论

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

评论(1

许仙没带伞 2024-12-17 02:54:14

像这样设置 UIViewautoresizingMask

myView.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight;

这应该意味着视图在旋转时自动调整大小。

Set the UIView's autoresizingMask like so:

myView.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight;

This should mean that the view resizes itself automatically on rotation.

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