我有一个UITableView
从数组和下拉列表中填充的内容。
如果我选择下拉列表的任何行,数组将插入新值,并且 tableview 应该重新加载。
如何使用新的数组内容为 tableview 设置动画?
像我想一一显示行的动画。我试过这个方法
- (void)reloadRowsAtIndexPaths:(NSArray )indexPaths withRowAnimation:(UITableViewRowAnimation)animation {
NSIndexPath rowToReload = [NSIndexPath indexPathForRow:[names count] inSection:0];
NSArray* rowsToReload = [NSArray arrayWithObjects:rowToReload, nil];
[tableDetails reloadRowsAtIndexPaths:rowsToReload withRowAnimation:UITableViewRowAnimationNone];
}