gpt4 book ai didi

ios - 根据 iPad 或 iPhone 更改图像 CGRectMake

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

我有几个 ImageView ,框架是用 CGRectMake() 设置的。这些图片非常适合 iPhone,但在 iPad 上查看后,它们的尺寸仍然很小。

有没有办法根据 iPad 或 iPhone 更改 CGRectMake 的大小?

示例当前代码:

backgroundView.frame = CGRectMake(3, 3, 55, 55);

最佳答案

if ([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPhone) {
backgroundView.frame = CGRectMake(3, 3, 55, 55);
} else {
backgroundView.frame = CGRectMake(/* iPad-friendly values here*/);
}

关于ios - 根据 iPad 或 iPhone 更改图像 CGRectMake,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22672852/

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