解决使用tableview的reloadSections刷新之后,sectionFooter有时会消失

//CATransaction解决刷新之后sectionFooter消失的问题

    [CATransaction begin];
    [CATransaction setCompletionBlock:^{
        [self.tableView reloadData];
    }];
    NSIndexSet * set = [NSIndexSet indexSetWithIndex:2];
    [self.tableView reloadSections:set withRowAnimation:UITableViewRowAnimationNone];
    [CATransaction commit];

你可能感兴趣的:(解决使用tableview的reloadSections刷新之后,sectionFooter有时会消失)