我想知道如何使UITableView
表格中元素数量的最后一部分出现在 iPhone 联系人应用程序中:
谢谢
您可以从表部分中获取行数,如下所示:
int rowCount = 0;
for(int SECTION_NUMBER = 0 ; SECTION_NUMBER < numOfSections ; i++)
{
rowCount += [tablePropertyName numberOfRowsInSection:SECTION_NUMBER];
}
这里rowCount将是所有行的总数。所以你可以在 tablefooter 方法中显示 rowCount
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{
//Here pass rowCount in label text
}.
希望它可以帮助你。
您可以添加一个 tablview 委托方法:
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{
//add a uilabel with number of contacts text
}
希望这会有所帮助。