设置CALayer.AnchorPoint动画

时间:2012-08-27 09:21:09

标签: animation xamarin.ios calayer

我正在尝试使用动画设置AnchorPoint,但它不起作用。 我尝试用UIView制作动画:

UIView.BeginAnimations("Test");
UIView.SetDuAnimationDuration(1f);
Layer.AnchorPoint = new Point(0.5,0.5);
UIView.CommitAnimations();

但这不起作用。有没有人有动画设置AnchorPoint的动画?

提前致谢    亚历