【发布时间】:2013-12-24 15:52:24
【问题描述】:
谁能帮助我制作像我们在 Just Wink 应用程序中一样的动画。我想要与在 Just Wink 中相同的预览动画。 here is the animation which i want to have
我已经尝试了好几个小时,但没有发现任何有用的东西。我使用 CATransform3D 尝试了类似的动画,但也无法获得确切的动画。这是我尝试过的代码
intialTransform = CATransform3DIdentity;
intialTransform.m34 = 1.0 / -500;
intialTransform = CATransform3DRotate(intialTransform, DEGREES_TO_RADIANS(70), 1.0f, 0.0f, 0.0f);
_myView1.layer.transform = intialTransform;
我像 _myView2 和 _myview3 一样采用上面的三个视图,并且每个人都有 CATransform3DIdentity。我能够像在 Just Wink 中一样旋转不同的视图,但无法获得确切的动画。 尝试了很多样品,但这也没有解决我的问题。 请帮忙!!!!
【问题讨论】:
标签: objective-c animation ios6 ios7 xcode5