reloadRows后tableHeaderView为空

时间:2015-11-24 17:42:38

标签: objective-c uitableview

我有一个tableView,我在哪里设置tableHeaderView。工作和表现很好。 (请注意,它不是标题标题)

self.tableview.tableHeaderView = myCustomView;

当我执行以下代码行时,tableHeaderView变为空白,留下空白区域。

[tableView beginUpdates];

//update the view for which the button was clicked
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:sender.tag inSection:0];
NSArray *indexPaths = [[NSArray alloc] initWithObjects:indexPath, nil];
[tableView reloadRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationNone];

[tableView endUpdates];

是什么给出的?

0 个答案:

没有答案