如何调整 UIView 的横向方向?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样设置
UIView
的autoresizingMask
:这应该意味着视图在旋转时自动调整大小。
Set the
UIView
'sautoresizingMask
like so:This should mean that the view resizes itself automatically on rotation.