我有一个 UIImageView,我已经在我的 XIB 文件中对齐了我想要的位置。当我的 viewController 被调用时,我想让图像在 3 秒内向右移动大约 400 像素。然后我希望图像淡出。
我一直在玩 QuartzCore 和 CATransition 并且能够随着时间的推移淡出图像:
CATransition *animation = [CATransition animation];
animation.type = kCATransitionFade;
animation.duration = 0.4;
[coverImage.layer addAnimation:animation forKey:nil];
coverImage.hidden = true;
但是,我希望图像向右滑动。有人知道怎么做吗?谢谢!