//CATransaction解决刷新之后sectionFooter消失的问题
[CATransaction begin];
[CATransaction setCompletionBlock:^{
[self.tableView reloadData];
}];
NSIndexSet * set = [NSIndexSet indexSetWithIndex:2];
[self.tableView reloadSections:set withRowAnimation:UITableViewRowAnimationNone];
[CATransaction commit];