IOS动画

来源:互联网 发布:酒店数据分析表怎么做 编辑:程序博客网 时间:2024/05/18 03:54
           [UIView beginAnimations:@"animationID" context:nil];        [UIView setAnimationDuration:0.5f];        [UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES];        [UIView setAnimationRepeatAutoreverses:NO];        /*         [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:self.view cache:YES];//oglFlip, fromLeft         [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:self.view cache:YES];//oglFlip, fromRight         [UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES];         [UIView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:self.view cache:YES];         */                [appealReasonTableView exchangeSubviewAtIndex:1 withSubviewAtIndex:0];        [UIView commitAnimations];

0 0
原创粉丝点击