Iphone 视图效果 电子书翻页效果

来源:互联网 发布:php防cc攻击代码 编辑:程序博客网 时间:2024/06/06 04:51
[UIView beginAnimations:@"animationID" context:nil]; 
    [UIView setAnimationDuration:1.5f]; 
    [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut]; 
    [UIView setAnimationRepeatAutoreverses:NO]; 
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES]; 
[self.view exchangeSubviewAtIndex:1 withSubviewAtIndex:0]; 
    [UIView commitAnimations]; 
备注:需要保证桟中有大于等于两个视图 self.view exchangeSubviewAtIndex:1 withSubviewAtIndex:0];此句是用于视图切换的关键,我们可以根据需要进行想要更改。
原创粉丝点击