gpt4 book ai didi

ios - 如何隐藏 UITableView 中的空行并根据非空行更改 Uitableview 的高度

转载 作者:IT王子 更新时间:2023-10-29 07:34:04 25 4
gpt4 key购买 nike

我的 UITableView 有几个问题。

  1. 当我在我的页面上添加一个 UITableview 时,默认情况下它会显示一些固定数量的行,即使我将部分中的行数设置为 1。除了第一行,所有行都出现了,都是空行。所以,我想隐藏 UItableview 中的所有空行。

  2. 基于非空行,我想更改我的 UItableView 的高度。

最佳答案

新答案

在 Swift 2.2、3.0 及更高版本中,执行以下操作:

tableView.tableFooterView = UIView()

下面是旧答案。留给子孙后代。

如果您必须使用 UITableViewStylePlain,并且您不将 footerView 用于任何其他用途,并且您启用 ARC,则可以使用以下半脏解决方案。 :

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
UIView *view = [[UIView alloc] init];

return view;
}

如果您禁用 ARC,请使用以下命令:

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
UIView *view = [[[UIView alloc] init] autorelease];

return view;
}

这会创建一个不可见的 footerView,它会立即出现在最后一个填充数据的单元格之后。

关于ios - 如何隐藏 UITableView 中的空行并根据非空行更改 Uitableview 的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4213197/

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