I Show a view using presentModalViewController. and from this view i want to push a view using navigationcontroller. 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

link|improve this question

58% accept rate
feedback

1 Answer

up vote 4 down vote accepted

First you have to present your modal view controller inside a navigation controller:

MyViewController *vc = [[MyViewController alloc] initWithNibName:@"MyNib" bundle:nil];
UINavigationController *nc = [[UINavigationController alloc] initWithRootViewController:vc];

[self presentModalViewController:nc animated:YES];

[vc release];
[nc release];

Then inside MyViewController you can do:

OtherViewController *vc = [[OtherViewController alloc] initWithNibName:@"MyOtherNib" bundle:nil];
[self.navigationController pushViewController:vc animated:YES];
[vc release];
link|improve this answer
Thanks for quick reply. it works for me. but the vc view is not transparent. i also set the [uicolor clearcolor] but it not works for me. so can you suggest me how i make it transparent. Thx – Mitesh Khatri Jul 21 '11 at 9:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.