我正在使用MVVMCross,并尝试使用以下代码使用UITableView Row动画:
NotesTableSource source = new NotesTableSource(TableView, NoteListCell.Identifier, (NoteListViewModel) ViewModel)
{
UseAnimations = true,
AddAnimation = UITableViewRowAnimation.Top,
RemoveAnimation = UITableViewRowAnimation.Top,
ReplaceAnimation = UITableViewRowAnimation.Top,
};
NotesTableSource是MvxStandardTableViewSource的子类。 表视图和绑定工作正常,但在视图模型更改时我无法看到任何动画。
设置这些属性似乎可以解决问题,但事实并非如此。我错过了什么吗?
谢谢!!