gpt4 book ai didi

iphone - 我的 UITableView 上的这条线是什么?

转载 作者:行者123 更新时间:2023-12-01 17:01:20 26 4
gpt4 key购买 nike

我有一个分组 TableView 。我以前做过几十个表格 View ,但我不确定这条线是什么:
enter image description here

谁能告诉我那是什么以及如何删除它?

更新:

我将问题缩小到 heightForRowAtIndexPath 委托(delegate)方法。看看下面的内容。请注意,我需要一些行更高:

-(CGFloat)tableView:(UITableView *)tableViewLocal heightForRowAtIndexPath:(NSIndexPath *)indexPath {
if(indexPath.section == 0 && (indexPath.row == 3 || indexPath.row == 4 || indexPath.row == 5)) {
return tableViewLocal.rowHeight * 1.3; //If I remove the multiplier, it doesn't produce the line.
}
else
return tableViewLocal.rowHeight;
}

最佳答案

它看起来像背景。尝试在代码中将您的 tableView 设置为

self.tableView.backgroundColor = [UIColor clearColor];

希望这可以帮助。

关于iphone - 我的 UITableView 上的这条线是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6606283/

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