创建自定义UIView动画过渡的最简单方法是什么?在Google搜索中弹出的大多数教程都不是最新的。 (我正在使用XCode 4.5版本)在我当前的iPhone应用程序中,我有以下代码用于我的屏幕转换:
[UIView beginAnimations:@"View flip" context:nil];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationDuration:1.25];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES];
[UIView commitAnimations];
我想要一些独特的东西而不是5或6个内置过渡。关于从哪里开始的任何想法或建议?
答案 0 :(得分:1)
我认为这就是你要找的东西:
[UIView animateWithDuration:0.3 animations:^{
//Move frame or transform view
}];
在该块中,您可以放置任意动画代码。