开发者

UIViewAnimationTransitionCurDown\Up

开发者 https://www.devze.com 2023-02-12 17:23 出处:网络
[UIView beginAnimations:@\"Animate\" context:nil]; [UIView setAnimationDuration:0.75]; [UIView setAnimationCurve:UIViewAnimationCurveEaseOut];
[UIView beginAnimations:@"Animate" context:nil];
[UIView setAnimationDuration:0.75];
[UIView setAnimationCurve:UIViewAnimationCurveEaseOut];

[UIView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:self.view cache:YES];

[aViewController viewWillDisappear:YES];
[bViewController viewWillAppear:开发者_开发技巧YES];

[aViewController.view removeFromSuperview];
[self.view addSubview:bViewController.view];


[aViewController viewDidDisappear:YES];
[bViewController viewDidAppear:YES];

[UIView commitAnimations];

When the page down or up,We can see the back of the first page.The problem is,I want to change the color of the backside of the page. How can I deal with it?

0

精彩评论

暂无评论...
验证码 换一张
取 消