页面动画

来源:互联网 发布:网络编辑任职要求 编辑:程序博客网 时间:2024/06/06 10:01

ATFrom:

UIViewAnimationTransitionCurlUp 

UIViewAnimationTransitionCurlDown

UIViewAnimationTransitionFlipFromLeft 

UIViewAnimationTransitionFlipFromRight


-(id) AnimationTransition:(UIViewAnimationTransition)ATFrom

{

    [UIView beginAnimations:nil context:NULL];

[UIView setAnimationDuration:0.75];

[UIView setAnimationTransition:(ATFrom)

  forView:scrollView cache:YES];

    [UIView commitAnimations];

    return  nil;

}