How can I present a modalViewController from a different view controller?
I am currently displaying my modal view like this:
[self presentModalViewController:navController animated:YES];
But, I want to
[OtherViewController presentModalViewController:navController animated:YES];
Because part of it is being hidden by another viewController that is above it and manages the "self" view.