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 a UINavigationController setup in my storyboard and I have made a custom segue class which you can see below which nicely fades between my views (rather than a bog standard push).

However, when I tap that back button my nav controller gave me, I get a push animation which I don't want, I want to use that fade! I also don't want to have to have segues in my storyboard going both ways as it just gets messy.

Any help much appreciated!

Custom fade segue:

-(void)perform
{
    __block UIViewController *sourceViewController = (UIViewController*)[self sourceViewController];
    __block UIViewController *destinationController = (UIViewController*)[self destinationViewController];

    [UIView transitionWithView:sourceViewController.navigationController.view duration:1.0 options:UIViewAnimationOptionTransitionCrossDissolve
                    animations:^
                    {
                        [sourceViewController.navigationController pushViewController:destinationController animated:NO];
                    }
                    completion:^(BOOL finished)
                    {
                        NSLog(@"Transition Completed");
                    }];
}

EDIT:

Perhaps I should simplify. How can I do a cross dissolve fade between two view controllers in a UINavigationController which pushes and pops views instead of the standard left-right siding animation?

Thanks.

share|improve this question
The answers on the question: stackoverflow.com/questions/4869787/… seem to indicate that you can customize the 'push' by defining your own pushController function (and therefore overruling the default) within your UINavigationController - Worth trying? (or have you already tried something like this?) – YDL Aug 30 '12 at 17:10
Couldn't get it working. – Josh Kahane Aug 30 '12 at 17:56

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.