I have a UIViewController (parent) that calls presentModalViewController
with another UIViewController (child) on viewDidLoad
.
If parent doesn't have a UINavigationController, then presentModalViewController
does nothing. If it has a UINavigationController, then presentModalViewController
shows child as expected.
Is this the standard behavior of presentModalViewController
or is there something else at play here?