gpt4 book ai didi

ios - UITableView 第二个原型(prototype)单元格似乎不符合自定义高度?

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

我正在使第二个原型(prototype)单元格出队,但单元格的高度似乎没有得到遵守。

enter image description here

任何人都可以引导我朝着正确的方向前进吗?我试过在谷歌上搜索但无济于事。


问题已经解决,我的解决方案在代码中实现:

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

CGFloat height;
if ([indexPath row] == 0) {
height = 170.0f;
}
else {
height = 72.0f;
}
return height;
}

Fixed!

最佳答案

您需要实现 TableView 委托(delegate)方法 heightForRowAtIndexPath: 才能更改单元格的高度。你不能纯粹在 Storyboard 中做到这一点。

关于ios - UITableView 第二个原型(prototype)单元格似乎不符合自定义高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30487128/

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