gpt4 book ai didi

iphone - iOS - 在 iphone 5 分辨率上支持 xib

转载 作者:行者123 更新时间:2023-12-01 18:24:25 25 4
gpt4 key购买 nike

我在 xib 文件中设计了一个 3.5 大小的 View 。当我以 iphone 5 分辨率运行时,它会在底部显示一个空格。

有没有办法支持一个 xib 进入两种分辨率。

谢谢。

编辑

if( IS_IPHONE_5 )
{
_helpButton = [[UIButton alloc] initWithFrame:self.view.bounds];
_LogoImage = [[UIImageView alloc] initWithFrame:self.view.bounds];
[_helpButton setAutoresizingMask:UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight];
[_LogoImage setAutoresizingMask:UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight];
CGRect frameRect = _helpButton.frame;
frameRect.origin.y += 300;
_helpButton.frame = frameRect;

}

最佳答案

要么 1) 打开 xib 文件的自动布局,让它根据屏幕高度自动调整,要么 2) 关闭自动布局,然后设置字符串和支柱以根据其大小扩展 View ,或者 3) 使用 socket 并以编程方式设置它的高度。

关于iphone - iOS - 在 iphone 5 分辨率上支持 xib,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14746015/

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