我有一个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];
}