iOS视图翻页过渡效果详解手机开发

CGContextRef context = UIGraphicsGetCurrentContext();  
[UIView beginAnimations:nil context:context]; 
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];  
[UIView setAnimationDuration:1.0]; 
// Apply the animation to the backdrop 
[UIView setAnimationTransition:  
    UIViewAnimationTransitionCurlUp 
    forView:myView cache:YES]; 
// Exchange the two foreground views  
[myView exchangeSubviewAtIndex:0 
    withSubviewAtIndex:1];  
[UIView commitAnimations];

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/5234.html

(0)
上一篇 2021年7月16日
下一篇 2021年7月16日

相关推荐

发表回复

登录后才能评论