gpt4 book ai didi

ios - 消除 UITableView 下面多余的分隔符

转载 作者:IT王子 更新时间:2023-10-29 07:24:13 27 4
gpt4 key购买 nike

当我设置一个包含 4 行的 TableView 时,填充行下方仍有额外的分隔线(或额外的空白单元格)。

我将如何删除这些单元格?

image for extra separator lines in UITableView

最佳答案

界面生成器(iOS 9+)

只需将一个 UIView 拖到表格中即可。在 Storyboard 中,它将位于自定义单元格下方的顶部。您可能更愿意将其命名为“页脚”。

这里为了清晰起见以绿色显示,您可能需要清晰的颜色。

请注意,通过调整高度,您可以随心所欲地影响表格“底部反弹”的处理方式。 (高度为零通常没问题)。

enter image description here


以编程方式执行此操作:

swift

override func viewDidLoad() {
super.viewDidLoad()
self.tableView.tableFooterView = UIView()
}

objective-C

iOS 6.1+

- (void)viewDidLoad 
{
[super viewDidLoad];

// This will remove extra separators from tableview
self.tableView.tableFooterView = [UIView new];
}

或者如果你愿意,

    self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];

iOS 历史上:

添加到 TableView Controller ...

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
// This will create a "invisible" footer
return CGFLOAT_MIN;
}

如果有必要...

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
return [UIView new];

// If you are not using ARC:
// return [[UIView new] autorelease];
}

关于ios - 消除 UITableView 下面多余的分隔符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1369831/

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