我有一个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];
是什么给出的?