如何以編程方式將導航欄添加到presentModalViewController? 我知道默認的導航欄將在pushViewController .. 希望你的幫助...如何以編程方式將導航欄添加到presentModalViewController?
1
A
回答
4
使用viewDidLoad中的這段代碼。
UINavigationBar *myBar = [[UINavigationBar alloc]initWithFrame:CGRectMake(0, 0, 320, 50)];
[self.view addSubview:myBar];
這會將導航欄添加到您的視圖。
1
這可以幫助你
PopoverView *foo = [[PopoverView alloc] initWithNibName:@"PopoverView" bundle:nil];
// Here you pass through properties if you need too.
// ...
UINavigationController *navC = [[UINavigationController alloc] initWithRootView:foo];
[foo release];
[self.navigationController presentModalViewController:navC animated:YES];
那你是怎麼添加一個導航欄,以模態。
1
嘗試添加以下內容到瀏覽做負載
[self.navigationController setNavigationBarHidden:NO animated:YES];
+0
我不知道,這不適合我。我在viewDidLoad中嘗試了這兩種方法,並且當呈現視圖控制器實例化呈現的控制器時 – SimplGy 2015-07-22 20:31:36
相關問題
- 1. 以編程方式將按鈕添加到導航欄
- 2. 如何以編程方式將導航欄添加到我的應用程序?
- 3. 將按鈕添加到導航欄並以編程方式顯示
- 4. 以編程方式將選擇器添加到導航欄按鈕
- 5. 以編程方式添加導航欄iOS
- 6. 如何以編程方式將UIButton添加到工具欄上?
- 7. 如何以編程方式將工具欄添加到LinearLayout
- 8. 如何將導航欄添加到PyDev?
- 9. 如何將UIBarButtonItem添加到導航欄?
- 10. 如何將導航欄添加到UITableView
- 11. 如何以編程方式打開引導移動導航欄?
- 12. 如何以編程方式添加實際適合屏幕的導航欄?
- 13. 如何以編程方式在導航欄中添加下拉菜單?
- 14. 如何以編程方式將組添加到導航抽屜中
- 15. 如何以編程方式添加導航控制器?
- 16. 如何以編程方式添加多個導航控制器?
- 17. 如何以編程方式添加導航控制器?
- 18. 如何將徽標添加到Twitter引導程序導航欄?
- 19. jQuery的編程方式添加導航欄元素移動
- 20. 如何以編程方式創建自定義導航欄?
- 21. 如何以編程方式設置導航欄的位置
- 22. 如何以編程方式將離子按鈕添加到離子導航欄? (Ionic 2,Angular 2)
- 23. 添加導航欄編程到tableviewController(賽格瑞推或模式)
- 24. 以編程方式添加UINavigation欄
- 25. 添加導航欄的UITableView編程
- 26. 如何將導航添加到模式
- 27. Android將按鈕以編程方式添加到工具欄
- 28. 以編程方式將工具欄添加到Android中的RelativeView
- 29. 以編程方式將UILabel添加到工具欄
- 30. 以編程方式將標籤添加到標籤欄
的可能重複的[添加導航欄,以編程的UITableViewController?](http://stackoverflow.com/questions/2700990/adding-a-navigationbar-to -uitableviewcontroller-programmingmatically) – rmaddy 2013-02-13 04:18:17
UINavigationController * navController = [[[UINavigationController alloc] initWithRootViewController:tableViewController] autorelease]; [self presentModalViewController:navController animated:YES];試試這個 – 2013-02-13 04:20:43
您可以通過拖放操作直接從界面生成器中將導航欄添加到xib文件中。 – 2013-02-13 04:31:43