我在为视图的移动设置动画时遇到问题。它可以工作,但如果我开始为运动设置动画,它就会卡住。没有动画,它可以流畅地工作。但是,如果我设置动画,它就会开始卡住。这是我的代码:
UIView.BeginAnimations("Slide");
this.detailController.View.Layer.Position = new PointF(50,50);
UIView.CommitAnimations();
我已经尝试过:
- 设置:
this.detailController.View.Center = new PointF(50,50);
- 使用 CoreAnimations
有没有可能使动画更流畅?
提前致谢。