0

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

在此处输入图像描述

4

2 回答 2

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;
}

可以在此处找到其他文档。

于 2012-11-24T18:39:09.593 回答
2

您在该屏幕截图中看到的内容不是任何 UITableViewCell 的一部分。它是表格的页脚(表格的一个特征)。尝试制作一个包含所需内容的 UILabel 并将其设置为表格的tableFooterView.

于 2012-11-24T18:39:22.590 回答