UITableViewCell底部信息文本

时间:2012-11-24 18:36:25

标签: objective-c ios cocoa-touch uitableview

如何将一些信息文本('请注意......')添加到uitableviewcell的底部,就像在这张图片中一样:

enter image description here

2 个答案:

答案 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