0

あれは:

if ([self.tableView numberOfRowsInSection:0] == 0) {
    self.tableView.tableFooterView.hidden = NO;
} else {
    self.tableView.tableFooterView.hidden = YES;
}

しかし、自動更新できることを願っています。

4

2 に答える 2

1

最後に、表示/非表示tableFooterViewロジックを次のように配置します。

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

それは私にとってはうまくいきます。

于 2013-06-27T05:53:59.310 に答える
1

この機能を実装できます:

-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
    if ([tableView numberOfRowsInSection:section] == 0) return ***height***;
    else return 0;
}
于 2013-06-26T09:16:44.590 に答える