在TableView末尾显示单元格数量

时间:2016-02-26 17:26:40

标签: uitableview dictionary nsdictionary plist tableviewcell

我在Table View Controller中有联系人列表。如何确保在表的末尾显示联系人(或单元格)的数量??? 我的plist for cell中有词典

enter image description here

1 个答案:

答案 0 :(得分:1)

尝试在UITableViewDelegate方法下使用表格视图页脚:

- (nullable UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section

返回表格中包含行数的标签。如果您不希望您的页脚浮动,请使用UITableViewStyleGrouped

请查看this了解详情