- [UIView beginAnimations:@"Curl"context:nil];//动画开始
- [UIView setAnimationDuration:0.75];
- [UIView setAnimationDelegate:self];
- [UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:myview cache:YES];
- [myview removeFromSuperview];
- [UIView commitAnimations];
- CATransition *animation = [CATransition animation];
- [animation setDuration:1.25f];
- [animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn]];
- [animation setType:kCATransitionReveal];
- [animation setSubtype: kCATransitionFromBottom];
- [self.view.layer addAnimation:animation forKey:@"Reveal"];