Presenting a modal view controller immediately after dismissing another
Aug 2012 Update: iOS 5 and greater have introduced safer APIs for doing things after modals have animated into / out of place using completion blocks: [self presentViewController:myModalVC animated:YES completion:^{}]; [self dismissViewControllerAnimated:YES completion:^{}]; Pre-Aug 2012 Answer: I encountered a similar problem when dismissing modal one and then presenting modal two in rapid succession. Sometimes modal … Read more