0

我想知道如何使UITableView表格中元素数量的最后一部分出现在 iPhone 联系人应用程序中:

样本

谢谢

4

3 回答 3

1

您可以从表部分中获取行数,如下所示:

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

希望它可以帮助你。

于 2013-05-10T10:16:17.967 回答
1

您可以添加一个 tablview 委托方法:

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

    //add a uilabel with number of contacts text 
}

希望这会有所帮助。

于 2013-05-10T10:14:31.037 回答
0

您可以使用UITableView 的 tableFooterView 属性

于 2013-05-10T10:11:05.583 回答