web-dev-qa-db-ja.com

ナビゲーションコントローラー付きモーダルビュー

まだ私が間違っていることを理解することはできません。内部にナビゲーションコントローラーを備えたモーダルビューを取得しようとしています。

これが私のプロジェクトです http://www.matthewpateman.com/New.Zip

誰かが私が間違っていることを教えてもらえますか?ナビゲーションコントローラーに「ShopModalView.xib」をポップアップ表示したいのですが、空白のページが表示されるだけです…

14
Matthew Pateman

モーダルビューとして表示し、コントローラーをナビゲーションコントローラーでラップして、編集、保存などのボタンを追加する場合に備えてナビゲーションバーを提供します。

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];
45
iwasrobbed
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];
4
DVG

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)
2
CodeBender