现在我想在一个uitableview 上插入一个新的section ,但要保持这个插入新的section 总是在顶部。我使用如下代码 [myTableView beginUpdates]; [myTableView insertSections:[NSIndexSet indexSetWithIndex:displaySec-1] withRowAnimation:UITableViewRowAnimationTop];
[totalSectionArr insertObject:[tempdays objectAtIndex:displaySec] atIndex:displaySec-1];
[myTableView endUpdates];
第一次插入 确实在顶部,第二次就跑到中间去了?求解阿?各位