gpt4 book ai didi

ios - 使用自动布局为所有屏幕按比例缩放表格 View 单元格高度

转载 作者:行者123 更新时间:2023-11-28 11:14:31 27 4
gpt4 key购买 nike

我在 .xib 中制作了一个简单的表格 View 。我想为所有屏幕尺寸(即 iphone 6、6 plus 和 ipad)扩展表格 View 单元格。目前我已经为不同的屏幕硬编码了不同的高度,如下所示:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:       (NSIndexPath *)indexPath{

CGFloat cellHeight = 0;

if (IS_IPHONE_6P) {

// iphone 6P
// cellHeight = 133;
cellHeight = 175;


}
else if (IS_IPHONE_6){
// on iphone 6
// cellHeight = 120;
cellHeight = 160;

}

else if (IS_IPHONE_5){
//On iphone 5
// cellHeight = 105;
cellHeight = 145;

}

else if (IS_IPHONE_4_OR_LESS){
// on iphone 4
// cellHeight = 50;
cellHeight = 130;

}
else {
//on ipad
// cellHeight = 200;
cellHeight = 280;

}


// cellHeight = cellHeight *2;

return cellHeight;

}

我有更好的方法吗?

最佳答案

一种可能的解决方案是获取屏幕高度并乘以您的比率系数。

return CGRectGetHeight([UIScreen mainScreen].bounds) * ratio;

关于ios - 使用自动布局为所有屏幕按比例缩放表格 View 单元格高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32710642/

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