标签: uitableview dictionary nsdictionary plist tableviewcell
我在Table View Controller中有联系人列表。如何确保在表的末尾显示联系人(或单元格)的数量??? 我的plist for cell中有词典
答案 0 :(得分:1)
尝试在UITableViewDelegate方法下使用表格视图页脚:
- (nullable UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
返回表格中包含行数的标签。如果您不希望您的页脚浮动,请使用UITableViewStyleGrouped。
UITableViewStyleGrouped
请查看this了解详情