MVVMCross表格视图动画

时间:2015-04-13 19:05:15

标签: ios uitableview xamarin mvvmcross

我正在使用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的子类。 表视图和绑定工作正常,但在视图模型更改时我无法看到任何动画。

设置这些属性似乎可以解决问题,但事实并非如此。我错过了什么吗?

谢谢!!

0 个答案:

没有答案