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

Navigation controller creates 2 views instead of 1

I explain the situation : I've got a NavigationController + TableViewController and when I click on a cell, I've done a performSegueWithIdentifier to go to another View. I've done this through storyboard. [self…
0
votes
1 answer

navigationController popToRootViewController, the navigation bar shows backButton and son view's title

I'm beginner for iOS dev. In my app, RootView jump to son views: A、B、C、D through buttons (defined in storyboard, push segue). i use some image to be touched so the son views can push to each other, I.E the code in B Controller: // jump to View…
0
votes
1 answer

UINavigationController not pushing correctly

I am trying to navigate some view controller programatically. I have already add the UINavigationControllerDelegate in the header file...But the view didnt push out when I click the button..Can anyone tell did I do anything wrongly??? …
0
votes
1 answer

Static Table navigation in a Tabbar application

I am working in an Tabbar based app. On the last of 4 tabs(More), I have a ViewController with a StaticTableView in it, embedded in a NavigationController which is in a Relationship View with my Tabbar. Problem is that when I navigate to a new…
LAOMUSIC ARTS
  • 642
  • 2
  • 10
  • 15
0
votes
1 answer

I can't figure out how to navigate to a previous page

I have two ways of navigating to a form that I'm using. However, once this form has been submitted, I would like to return to the previous page that I was on. Is there a certain url path that I can navigate to based on which page I was on…
DannyD
  • 2,732
  • 16
  • 51
  • 73
0
votes
2 answers

iOS + Storyboard: Re-using ViewControllers in navigation

in my current application, I want to use a certain UICollectionView several times, but with different selection behaviours. Consider the following storyboard layout as "is" (and working): Tab Bar Controller (2 items): -> Navigation Controller 1 ->…
Dennis
  • 992
  • 1
  • 10
  • 23
0
votes
2 answers

Pushing several viewcontroller from a NSObject

I am troubling with an issue and I cannot be able to solve it! The scenario is the next one: - I have 4 view controller (main view controller is an UITableView, settingsVC, messsageDetailController and moreInfoVC). - I also have a listener…
rubrin
  • 99
  • 2
  • 10
0
votes
1 answer

Navigation bar View Controller is twice the size as others

I have a multiple View Controllers embedded in Navigation Controller and one of my navigation bars is twice the size(extends down twice as much) as every other one. I want all of these bars to be the same size, but can't find anyway to change the…
DaveLass
  • 625
  • 1
  • 8
  • 17
0
votes
1 answer

Passing value using delegate is not working

In RootViewController I have a button which when it's clicked makes the self.navigationController push to CategoryViewController. Then, in CategoryViewController, click one cell push to SubCatsViewController. and When I have chosen a cell, and it…
yong ho
  • 3,892
  • 9
  • 40
  • 81
0
votes
2 answers

How to get rid of navigation bar for iOS for the first screen of application

I am confused about navigation controller, My first View in the application consists of 4 buttons inside, I wanna add a navigation controller to this view so where I push another views to navigation controller according to which buttons is pressed…
Reaper
  • 124
  • 2
  • 16
0
votes
3 answers

IOS pushing viewcontroller from navigationcontroller in a tabbarcontroller but does not show

I am encountering a very strange problem. Here is the code structure in my app delegate: self.accountViewController = [[AccountViewController alloc] initWithNibName:@"AccountViewController" bundle:nil]; self.homeViewController = [[HomeViewController…
Vincent Yiu
  • 1,291
  • 2
  • 11
  • 14
0
votes
1 answer

how pass data back from my second view controller to my first view controller using storyboards, or segues, protocols & delegates?

well is my first post & cannot upload a image because I need a 10 of reputation, XD but it;s ok so: Hi Guys, well I need pass a label.text from my cell in my tableview from my second or child view controller, to my first or parent view controller,…
0
votes
2 answers

Switch view to another view on storyboard

I am new in iOS programming. What I am trying to do is: I have some views in a storyboard and I'd like to switch between the views programatically. For example, when a button is clicked, I call a method and I want to change views here (I can call…
0
votes
1 answer

activate/deactivate config listeners not firing in navigationview to hide navigationbar button in sencha touch 2

I am attempting to do something which (at least I believe) should be very straightforward in ST2 but it is not working. I have a main view (xtype: navigationview) and a secondary view (xtype: container). There is a button in the navigationbar on the…
0
votes
1 answer

How to add ViewController to existing NavigationController from AppDelegate?

I have a LocalNotification which invokes the application. In the application, almost all view are connected with NavigationController to show header bar and the "global menu". When the application was invoked by the action from the Notification, the…
Faust V
  • 667
  • 1
  • 9
  • 19