您的位置:首页 > 产品设计 > UI/UE

ios中uiview 转场动画

2013-07-14 17:28 323 查看
//转场动画1--头尾
-(void)TransitionAnimation1{
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.5];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES];
[UIView commitAnimations];
}

//转场动画-block
-(void)TransitionAnimation2{
[UIView transitionWithView:_lastview duration:0.5 options:UIViewAnimationOptionTransitionCurlUp animations:^{

} completion:^(BOOL finished) {

}];
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: