iOS-UITableView使用reloadSections刷新section问题

一般使用直接使用

#define Secons  5  行数

 [famousTangTable reloadSections:[[NSIndexSet alloc] initWithIndex:Secons] withRowAnimation:UITableViewRowAnimationAutomatic];

刷新某一行时会使那一行的section消失掉,老外给的解决方法是

 [CATransaction begin];
 [CATransaction setCompletionBlock:^{
      [famousTangTable reloadData];
 }];
 [famousTangTable reloadSections:[[NSIndexSet alloc] initWithIndex:2] withRowAnimation:UITableViewRowAnimationAutomatic];
 [CATransaction commit];

就可以解决消失问题

你可能感兴趣的:(Object-c,ios)