(一)
[UIView beginAnimations:nilcontext:nil];
[UIView setAnimationDuration:0.75];
[UIView setAnimationTransition:UIViewAnimationTransitio
[UIViewsetAnimationDelegate:self];
[UIViewsetAnimationDidStopSelec
[UIView commitAnimations];
(二)
[UIViewanimateWithDuration:0.3animations:^{
(三)
[UIView animateWithDuration:0.4 delay:0.2 options:nil animations:^{ //老封面渐隐效果
flashView.alpha = 0;
} completion:^(BOOL finished){
[flashView removeFromSuperview];
}];
原文:http://blog.csdn.net/xietao3/article/details/19206499