gpt4 book ai didi

ios - 自动调整 UIView 大小以适应 iPhone 5 屏幕,同时保持比例

转载 作者:行者123 更新时间:2023-11-28 22:30:22 25 4
gpt4 key购买 nike

我的 StoryBoard 配置为 iPhone4 分辨率,当在 iPhone 5 上运行时,我希望 UIView 变大(包括高度和宽度)。

现在的问题是视野只会变高,不会变宽。为了实现这一点,自动调整大小配置应该是什么?

enter image description here enter image description here

最佳答案

您可能需要使用 UIView 的子类并重写 setFrame: 方法以捕捉框架变化。

- (void)setFrame:(CGRect)frame
{
frame.size.width = frame.size.height; // Make the *width* always equal to the *height*. Logic could go here, etc.
[super setFrame:frame]
}

关于ios - 自动调整 UIView 大小以适应 iPhone 5 屏幕,同时保持比例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17622294/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com