uiview 的setAnimationTransition : forView 方法实现翻页效果

 

    [UIView beginAnimations:nil context:nil];

    [UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:_imageViewFirst cache:YES];

    [UIView setAnimationDuration:1.0f];

    [UIView commitAnimations];

 

你可能感兴趣的:(transition)