自动缩放 UIView 和旋转的所有内容

发布于 2024-10-11 14:16:40 字数 253 浏览 4 评论 0原文

这应该很简单,但现在我却无法理解。

我有一个处于纵向模式的应用程序,当将设备倾斜到横向模式时,我只想将所有内容按比例缩小,以便所有内容都显示在屏幕中央,这会导致左侧出现空白区域,右侧(这很好)。如何在 Interface Builder 中进行设置?我有一个包含 UIView 的视图,希望通过正确调整该视图的大小,所有 UIImageView 等也应该按比例缩小。 替代文本

This should be simple but it just eludes me now.

I have an app in portrait mode, and when tilting the device into landscape mode, I just want all of the content to aspect scale down so that all content is displayed in the center of the screen, which would cause empty space on the left and right sides (this is fine). How do I set this up in Interface Builder? I have one containing UIView and am hoping that by having that one properly resized, all of the UIImageViews etc should also be aspect scaled down.
alt text

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

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

发布评论

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

评论(1

花海 2024-10-18 14:16:40

这就是 Rincewind 在 Apple 论坛上的答案……它对我有用。我必须为顶视图的所有子视图正确处理 contentMode 和自动缩放参数,当方向改变时,我调整了子视图的大小(更改了其框架)。

您应该设置您的内容模式
UI视图到
UIViewContentModeScaleAspectFit。你
可以在界面中配置
通过 ContentMode 弹出窗口生成器。
请记住,通过将其设置为您的
如果没有你,视图将不会重绘
手动调用-setNeedsDisplay。
请记住,如果您的视图开始
小而增长,它会简单地
放大你的小内容,直到你
重绘视图。

So this is the answer from Rincewind over at Apple's forums... it worked out for me. I had to work on the contentMode and autoscaling parameters properly for all subviews of the top view, which I resized (changed its frame) when orientation changes.

You should set the contentMode of your
UIView to
UIViewContentModeScaleAspectFit. You
can configure this in Interface
Builder via the ContentMode popup.
Keep in mind that by setting this your
view will not redraw without you
calling -setNeedsDisplay manually.
Keep in mind that if your view starts
small and grows that it will simply
zoom your small content until you
redraw the view.

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