如何将一些信息文本('请注意......')添加到uitableviewcell的底部,就像在这张图片中一样:
答案 0 :(得分:2)
您应该尝试- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
:
- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section {
if (section == 0) {
return @"This text is below the TableView!";
}
return nil;
}
可以找到其他文档here。
答案 1 :(得分:2)
您在该屏幕截图中看到的内容不是任何UITableViewCell的一部分。它是表格的页脚(表格的一个特征)。尝试制作包含所需内容的UILabel,并将其设置为表tableFooterView
。