我有一个标准的UITableView有三个部分。在表格的底部,我正在尝试添加tableFooterView
。看起来桌子的最后一行和tableFooterView
的顶部之间有一个标准的间距,这很好,但我的问题是这个间距有不同的颜色,我无法摆脱的。我需要该间距以匹配tableView
的背景。
以下是一些代码:
self.menuTable.backgroundColor = [UIColor redColor];
self.menuTable.backgroundView = nil;
self.menuTable.separatorColor = [UIColor clearColor];
self.menuTable.delegate = self;
self.menuTable.sectionHeaderHeight = 10.0;
UIView *footer = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 200)];
footer.backgroundColor = self.menuTable.backgroundColor;
UILabel *footerLabel = [[UILabel alloc] initWithFrame:CGRectMake(60, 0, 205, 100)];
footerLabel.text = @"foo bar.";
footerLabel.textColor = [UIColor blackColor];
footerLabel.backgroundColor = self.menuTable.backgroundColor;
footerLabel.numberOfLines = 10;
footerLabel.font = [UIFont italicSystemFontOfSize:11.0];
[footerLabel sizeToFit];
[footer addSubview:footerLabel];
self.menuTable.tableFooterView = footer;
这是一个截图(抱歉红色,但这是查看颜色差异的最简单方法)。
答案 0 :(得分:1)
糟糕。之前我曾尝试添加sectionFooterView,并已实现tableView:heightForFooterInSection:
,最后一部分返回20。这就是差距的来源,它的默认颜色为白色。由于我现在将文本放在tableFooterView
,我只是删除了该委托回调,所有内容都按预期呈现。
答案 1 :(得分:0)
试试这个
self.menuTable.backgroundColor = [UIColor clearColor];
self.view.backgroundColor = [UIColor redColor];