Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 will require something custom.

Any ideas?

share|improve this question

2 Answers

up vote 43 down vote accepted

Just write your own method for the flip using Core Animation Transforms.

- (void)verticalFlip{
    [UIView animateWithDuration:someDuration delay:someDelay animations:^{
        yourView.transform = CATransform3DMakeRotation(M_PI,1.0,0.0,0.0);
    } completion:^{
        // code to be executed when flip is completed
    }];
}

Make sure you have the Core Animation libraries/frameworks added and included and also have included math.h if you want to use the M_PI notation.

EDIT:

To have it essentially "change" the view when it's halfway flipped do something like this:

- (void)verticalFlip{
    [UIView animateWithDuration:someDuration delay:someDelay animations:^{
        yourView.transform = CATransform3DMakeRotation(M_PI_2,1.0,0.0,0.0); //flip halfway
    } completion:^{
        while ([yourView.subviews count] > 0)
            [[yourView.subviews lastObject] removeFromSuperview]; // remove all subviews
        // Add your new views here 
        [UIView animateWithDuration:someDuration delay:someDelay animations:^{
            yourView.transform = CATransform3DMakeRotation(M_PI,1.0,0.0,0.0); //finish the flip
        } completion:^{
            // Flip completion code here
        }];
    }];
}

This could also work:

- (void)verticalFlip{

    // Do the first half of the flip
    [UIView animateWithDuration:someDuration delay:someDelay animations:^{
        yourView.transform = CATransform3DMakeRotation(M_PI_2,1.0,0.0,0.0); //flip halfway
    } completion:^{
        while ([yourView.subviews count] > 0)
            [[yourView.subviews lastObject] removeFromSuperview]; // remove all subviews
        // Add your new views here 
    }];

    // After a delay equal to the duration+delay of the first half of the flip, complete the flip
    [UIView animateWithDuration:someDuration delay:durationOfFirstAnimation animations:^{
        yourView.transform = CATransform3DMakeRotation(M_PI,1.0,0.0,0.0); //finish the flip
    } completion:^{
        // Flip completion code here
    }];
}

Cheers.

share|improve this answer
I've gotten the view to flip but I need someway of showing the "backside" of the view. Is there a way to hide it's sub views halfway though this animation, so it simulates that the view is "empty" on the backside? – Christian Schlensker Mar 22 '11 at 15:25
1  
I've edited my post to add in code that would do just that. – Brenton Morse Mar 22 '11 at 16:20
42  
For a 3D transform, you need to do yourView.layer.transform instead of yourView.transform – Chris Garrett Jun 28 '11 at 12:24
4  
The completion block should have a bool. completion:^(BOOL finished){ – Lee Whitney Sep 4 '11 at 21:06
1  
you should also use call + (void)animateWithDuration:(NSTimeInterval)duration delay:(NSTimeInterval)delay options:(UIViewAnimationOptions)options animations:(void (^)(void))animations completion:(void (^)(BOOL finished))completion in the code after "EDIT:" mark - options: parameter is missing in the original comment – Kostiantyn Sokolinskyi Sep 9 '11 at 15:42
show 3 more comments

The code from Brenton didn't work for me so I did a little more digging through the apple docs and found this piece of code:

- (IBAction)toggleMainViews:(id)sender {
    [UIView transitionFromView:(displayingPrimary ? primaryView : secondaryView)
                        toView:(displayingPrimary ? secondaryView : primaryView)
                      duration:1.0
                       options:(displayingPrimary ? 
                                    UIViewAnimationOptionTransitionFlipFromRight :
                                    UIViewAnimationOptionTransitionFlipFromLeft)
                    completion:^(BOOL finished) {
                                   if (finished) {
                                       displayingPrimary = !displayingPrimary;
                                   }
                              }
    ];
}

Worked like a charm.

share|improve this answer
2  
Is this a vertical flip? – Christian Schlensker Apr 1 '11 at 17:35
   
it's not a vertical flip. it's system provided horizontal flip – Kostiantyn Sokolinskyi Sep 9 '11 at 15:33
What's with the downvotes? This code is shorter and clearer than the other examples. Is there a hidden gotcha? – Russell Mull Apr 6 '12 at 11:21
4  
You can do a vertical flip by changing the options from ....options:isDetailTileView ? UIViewAnimationOptionTransitionFlipFromRight : UIViewAnimationOptionTransitionFlipFromLeft) to ....options:isDetailTileView ? UIViewAnimationOptionTransitionFlipFromTop : UIViewAnimationOptionTransitionFlipFromBottom) – Seega May 10 '12 at 9:44
2  
One more thing. If you try to flip subviews and you don't want the superview to flip. Put your two subviews inside a container view. Then it will not flip your fullscreen view! – Sebastian Mar 15 at 23:14
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.