我在一个分组表中有一个页脚,其中包含一个UILabel
我想根据其部分中的数据进行更新的表。我已经注意到,通过调用[self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:NO];
调用不仅如此,viewForFooterInSection:
而且cellForRowAtIndexPath:
也如此。我不想重新加载整个部分,所以我尝试调用[self.tableView viewForFooterInSection:0]
,但看起来不可能以这种方式获取页脚。
我怎么能这样做?
谢谢!