Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Modal View with Navigation Controller

still cannot figure out what I am doing wrong. Just trying to get a modal view with a navigation controller inside.

Here is my project http://www.matthewpateman.com/New.zip

Can anybody tell me what I am doing wrong? I want "ShopModalView.xib" to pop up in the navigation controller, but its just diplaying a blank page…

like image 295
Matthew Pateman Avatar asked Aug 13 '10 17:08

Matthew Pateman


3 Answers

Present it as a modal view and wrap the controller in a navigation controller to provide a navigation bar in case you want to add edit, save, etc buttons

ModalViewController *modalController = [[ModalViewController alloc] initWithNibName:@"ModalViewController" bundle:nil];
modalController.delegate = self; // Set any delegate you may have

// This is where you wrap the view up nicely in a navigation controller
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:modalController];

// You can even set the style of stuff before you show it
navigationController.navigationBar.barStyle = UIBarStyleBlackTranslucent;

// And now you want to present the view in a modal fashion
[self presentModalViewController:navigationController animated:YES completion:nil];
like image 152
iwasrobbed Avatar answered Oct 18 '22 00:10

iwasrobbed


For those wanting to do this in Swift 3.x:

// Obtain your viewcontroller
let viewController = ...

// Initialize a navigation controller, with your view controller as its root
let navigationController = UINavigationController(rootViewController: viewController)
navigationController.navigationBar.barStyle = .blackTranslucent

// Present it modally from the current controller
present(navigationController, animated: true, completion: nil)
like image 25
CodeBender Avatar answered Oct 17 '22 23:10

CodeBender


ShopModalViewController *shopMVC = [[ShopModalViewController alloc] initWithNibName:@"ShopModalViewController" bundle:nil];
//set properties
UINavigationContrller *navCon = [[UINavigationController alloc] initWithRootViewController:shopMVC];
[self presentModalViewController:navCon animated:YES];
[shopMVC release];
[navCon release];
like image 5
DVG Avatar answered Oct 18 '22 00:10

DVG