I constantly read your code in textbooks and never worked for me. I always use this:
UIViewController *mainViewController = [[YourMainViewController alloc] init]; UIViewController *viewControllerToSwitchTo = [[ViewControllerToSwitchTo alloc] init]; [mainViewController presentModalViewController:viewControllerToSwitchTo animated: YES];
You can set the lookup style with:
[setModalTransitionStyle:WhateverModalTransitionStyleYouWant]
but make sure this happens before the transition method.
source share