Questions tagged [navigationcontroller]

A Controller in a MVC (Model View Controller) pattern provides the execution flow of the application. NavigationController is about this flow.

A Controller in a MVC (Model View Controller) pattern provides the execution flow of the application. NagigationController is about this flow in a technology that can apply the MVC pattern.

507 questions
0
votes
1 answer

How to terminate a navigation controller and embed different views in a different navigation controller?-Swift/Xcode

I have an app with several views for a user to create an account. All these view are embedded within a UINavigationController. Once a user creates an account, they will be directed to the app's home screen. At this point, I no longer want the…
Nik F
  • 71
  • 1
  • 11
0
votes
1 answer

Navigation Controllers in Swift

I have embedded my story board view controllers with the navigation controller. However, I want one view specific controller to not have the navigation bar. How can I do this?
Nik F
  • 71
  • 1
  • 11
0
votes
1 answer

how to display half modalView just above the tabBarController?

I'm using tabBarController and navigationController I'm displaying a Half ModalView as child over one of the viewControllers of the TabBarController. Note I'm using iPhone-5 simulator. My problem is that the topViewController height is 504 even…
mustafa
  • 451
  • 6
  • 15
0
votes
1 answer

Programmatically change view in navigation controller which is inside tab controller

I'm trying to programmatically change the view in the navigation controller which is inside a tab controller. I defined a UINavigationController and made it to be the class for that navigation controller view. In the viewDidAppear method I tried to…
rubenhak
  • 830
  • 2
  • 10
  • 28
0
votes
0 answers

iOS Navigation Controller null after dismissing modal

I have a photo selection flow that that goes as such: VC1 push to VC2, present modal, dismiss modal, push VC3. Upon dismissing the modal view however, self.navigationController is null Modal View: [self dismissViewControllerAnimated:YES…
Gabriel M Sharp
  • 335
  • 1
  • 6
  • 17
0
votes
0 answers

Toggle between two View Controllers without using UISegmentedControl (iOS)

I'm writing an iOS app, hoping that the user can toggle between view A and B, operate on either one, and screen elements retain their states (maps, lists, text) after toggle away. I've been thinking of several options: Use navigation controller,…
0
votes
1 answer

Problem in building a tab bar inside navigation controller

I am really frustrated and I rally hope that you will help me to solve this problem! I'm trying to build a tab bar inside a navigation controller. I used this template provided by WiredBob. My problem is that I want to add more bar items to the tab…
Heba
  • 1
0
votes
1 answer

iPhone NavigationControl Toolbar items

MonoTouch preferred, but Obj-C ok too My MainWindow.xib has a NavigationView and a View. The View appears nicely and works, but I need to add buttons to the toolbar that is part of the NavigationView. I can see the toolbar in IB. In this View I try…
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
0
votes
1 answer

avoid navigation transition error with view controller identifier

I'm using Xcode 5 with storyboards and I should do something like this: ViewController with a Start button that launches IntermediateViewController IntermediateViewController that does an activity and then returns the value to the…
Lucia Belardinelli
  • 727
  • 1
  • 11
  • 20
0
votes
1 answer

Navigation (controller) in Tabbar (c) in Navigation (c)

I want to have a TabBar controller inside a navigation controller. So that when an item is selected on the first Navigation Controller it pushes the TabBar into view. Inside this tabbar on the first tab is another navigation controller. However I…
Jonathan.
  • 53,997
  • 54
  • 186
  • 290
0
votes
1 answer

Navigation with UISegmentcontrol iphone

I have created an up/down arrow segmented control button on the right side of the navigation bar in my detail view. How can I use these up/down arrows to change views?
Goods
  • 11
  • 4
0
votes
1 answer

Core data and TabViewController

In my project I'm using a tabBarController, then on one of my tabs, I add a navigation controller. The problem I'm having is this: If I use this code in the AppDelegate: (BOOL)application:(UIApplication *)application…
0
votes
1 answer

How to structure controllers using swift?

I want to build an app using swift with the following structure: Login/Signup screen Home screen with slide out menu on the left Different Pages in the menu -> same level like home screen ![Picture of the structure][1] // Sorry not enough…
Peter
  • 61
  • 1
  • 10
0
votes
3 answers

How to pass data from one view controller to another view controller which is embedded in navigation controller

I was able to pass data from one view controller to another, but when I embedded viewpapersViewController in navigation controller, data is not passing, I want to pass data to second view controller when button is pressed originally when button is…
0
votes
1 answer

Exc_Bad_Instruction when using navigationController PushViewController

I am trying to push to a different view when a user selects a table cell and when I get down to where it would make the push, it throws an error. The special situation here is that I am working two UIViews with tableViews under the same…