我想知道是谁实现了下降块动画,他们在What Pic应用程序中的表现方式 https://itunes.apple.com/au/app/whats-pic-guess-word-hiding/id600716806?mt=8
任何帮助都将受到高度赞赏。
答案 0 :(得分:2)
如果您的意思是动画,当块下降并旋转时,您可以使用UIView
CGAffineTransform transform = CGAffineTransformMakeTranslation(0, 200);
transform = CGAffineTransformRotate(transform, 20);
[UIView animateWithDuration:10
animations:^{
view.transform = transform;
}];
属性,如下所示:
{{1}}
如果您想拥有完全相同的动画,可以使用transform为动画添加一些选项
答案 1 :(得分:-1)
..或者你可以完全省下你的努力,并从其他人那里得到一个现成的入门套件,比如你自己
http://www.sellmyapplication.com/source-code/whats-the-pic-starter-kit/