I Show a view using presentModalViewController
. and from this UIView
I want to push a UIView
using UINavigationController
.
I tried below code for this
[self.parentViewController.navigationController
pushViewController:objViewFullScreen
animated:YES];
But it did not works for me. so please can any one suggest how I push a view from ModelViewController
.
Thanks