如何在 C# 中删除 TableView 中的行时从右到左单元格设置动画
Posted
技术标签:
【中文标题】如何在 C# 中删除 TableView 中的行时从右到左单元格设置动画【英文标题】:How to animate from right to left cells while deleting the rows in TableView in C# 【发布时间】:2020-07-03 06:37:19 【问题描述】:我有一个数据列表,它们显示在 TableView
中。
我有一个属性为“数据加载”
当这是false
时,我需要显示一种单元格
如果是true
,我需要显示另一个。
因此,在删除 TableView 中现有的 Cell 时,我需要对其进行动画处理(从右到左)。
如何做到这一点? 任何输入都会有所帮助。提前致谢!
我已经试过了
ListView.DeleteRows(new NSIndexPath[] indexPath , UITableViewRowAnimation.Left);
但是这里的动画太快了!!
【问题讨论】:
如果你不喜欢默认的动画,你应该自己写动画。看看this answer,你就会有所了解。 谢谢!但是您建议的答案仅在插入行时才有效,而且速度很快。如果它在 Xamarin 中会更好理解,因为我是 ios 新手。 @JackHua-MSFT 有人可以提供基于 bool 属性在删除时自定义单元格动画的答案吗? 【参考方案1】:我写了一个示例函数,你可以试试:
public void deleteRowsAtIndexPathswithRowAnimation(NSIndexPath indexPath)
UITableViewCell cell = tableV.CellAt(indexPath);
cell.Frame = new CoreGraphics.CGRect(0, cell.Frame.Y, cell.Frame.Size.Width, cell.Frame.Size.Height);
UIView.BeginAnimations("deleteAnimation");
UIView.SetAnimationDuration(1);
cell.Frame = new CoreGraphics.CGRect(View.Bounds.Size.Width, cell.Frame.Y, cell.Frame.Size.Width, cell.Frame.Size.Height);
UIView.CommitAnimations();
tableItems.RemoveObject(indexPath.Row);
tableV.ReloadData();
【讨论】:
以上是关于如何在 C# 中删除 TableView 中的行时从右到左单元格设置动画的主要内容,如果未能解决你的问题,请参考以下文章
删除行时TableView“无法识别的选择器发送到实例”错误