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