如何使用CABasicAnimations

时间:2010-07-29 05:43:05

标签: iphone

我对Animations很新,我需要一个CABasicAnimation,如何实现图像将其移动到左下角到右上角。我尝试了不同的例子,但我没有成功。 Alos我没有使用Interface Builder我正在使用viewcontroller来实现它。请帮帮我。

先谢谢, Sekhar。

1 个答案:

答案 0 :(得分:0)

应该是这样的:

CABasicAnimation* anim = [CABasicAnimation animation];
anim.fromValue = [NSValue valueWithCGPoint:CGPointMake(0,460)]; //Start position
anim.toValue = [NSValue valueWithCGPoint:CGPointMake(320,0)]; //End Position
anim.duration = 1.0;

[vourImageView.layer addAnimation:anim forKey:@"MoveToUpperRight"];

在浏览器中编码,不保证语法。

参见Core Animation Programming Guide章节明确动画