UIView vertical flip animation

后端 未结 8 764
温柔的废话
温柔的废话 2020-11-30 17:09

I have an iOS UIView with UIViewAnimationTransitionFlipFromRight. I need it to flip vertically though. The page curl transition won\'t cut it. I assume this wil

8条回答
  •  暖寄归人
    2020-11-30 17:46

    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:0.75];
    // checks to see if the view is attached
    [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight
                           forView:flipLabel
                             cache:YES];
    
     flipLabel.backgroundColor = [UIColor yellowColor];
    
    
    
    [UIView commitAnimations];
    

    You can make any modification which you want while flipping view, Here I have change the background color

提交回复
热议问题