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
2
votes
1 answer

Unable to stop animation and hide cancel button on searchBar of searchController

I set my searchBar in the navigationBar. When activated it animates and the cancel button appears. I'm trying to stop animation and prevent cancel button from appearing. My story board is a tableviewController set in a…
Ryasoh
  • 173
  • 1
  • 1
  • 10
2
votes
2 answers

UIPopover with UINavigationController and UITableView: tableView delegates not called

I am trying to display a simple iPad popover which contains a navigationController with a tableView. popover -> navigation controller -> view controller -> table view. I do need the navigationController because on touching the cells I want to push…
Endive au Jambon
  • 461
  • 1
  • 4
  • 9
2
votes
3 answers

Navigation Bar not transparent

Apple say this: barTintColor This color is made translucent by default unless you set the translucent property to NO. So why is my code producing an opaque navigation bar? self.navigationController.navigationBar.barTintColor = [UIColor…
Nathan
  • 155
  • 1
  • 2
  • 5
2
votes
2 answers

Navigation controller back button title programmatically (no storyboard)

hei, I'm new to navigation controllers and I've got one question for something that should be rather simple: How do I change the "back" item on the left site to have the title "Back" instead of the title of the previous view? I've tried…
suMi
  • 1,536
  • 1
  • 17
  • 30
2
votes
3 answers

iphone navigationController wont display unless i access .view

When i create a iboutlet to my navigationController and try to add it to the currentview it isn't showing anything. Its really strange, when i initialize my navigationController in code and then add it to the view it works perfectly. It even works…
2
votes
2 answers

Push UIImagePickerController to the left

I am making a camera app, which gives the user access to the Photo Library. They touch the button, and UIImagePickerControllerSourceTypeSavedPhotosAlbum pops up using presentModalViewController. When they touch a photo, I want a view to push the…
2
votes
3 answers

Navigation bar moves for no apparent reason

I was playing around with a website mostly for my learning purposes and on just one of my pages the navigation bar is shifted about 5 pixels to the left than all the other pages. I see no reason why it shouldn't be exactly the same as the others.…
user216849
2
votes
2 answers

UISearchDisplayController,UINavigationController,UITabBarController Woes

Hey everyone, running into a bit of an issue, I have created all my views through IB, with the main window having a NavigationController, and a TabBarController which loads a TableViewController in its first tab. The problem happens when i use the…
James Hall
  • 6,469
  • 6
  • 27
  • 28
2
votes
1 answer

View controller unset his tag when pushed into nevigation controller

... I guess. This is the situation: here a simple method, in a view controller, where we can push a botton to go in another view: - (IBAction)actionNext:(UIButton *)sender { self.numeriUtiliListaViewController =…
Lucabro
  • 525
  • 3
  • 9
  • 30
2
votes
1 answer

Monotouch NavigationController Transition Style

I am using Monotouch storyboard for Iphone. I have a navigation controller and through code I am setting the navigationbarhidden to false or true on certain views. I am setting the visibility in ViewWIllAppear method and it is working. Now I am…
2
votes
0 answers

Content moved after when back to first viewcontroller

I have 2 viewcontrollers in a navigationController. In the first viewcontroller I have a UIButton that open the second viewcontroller. When second viewController is load I can see the "back" button on top-left of the screen. Now, when I come back to…
2
votes
1 answer

NavigationBar from NavigationController doesn't show in IB StoryBoard

My first view is a UINavigationController with a rootview, which correctly shows a NavigationBar in IB in the .storyboard. I think this is nice when I am designing in IB, so I know the proportions, since the view is getting a little smaller with a…
Martol1ni
  • 4,684
  • 2
  • 29
  • 39
2
votes
1 answer

Spring MVC navigation

I want to create simple navigation with Spring MVC, so far I got this: @Controller @RequestMapping("/secure") public class NavigationController { @ModelAttribute("myPath/operation") public OperationForm getOperationForm() { return…
Paulius Matulionis
  • 23,085
  • 22
  • 103
  • 143
2
votes
1 answer

How to dismiss a NavigationController in Storyboard?

I've looked everywhere for this, so as a last resort I figured I should ask the question. I'm using Storyboard in XCode and have a navigation controller as my initial view. The root view of this navigation controller is a table view. In this table…
WiseOlMan
  • 926
  • 2
  • 11
  • 26
2
votes
1 answer

Send indexPath.row to another UIViewController

So I have the didSelectRowAtIndexPath method into a UITableViewController. The TableView goes to a UIViewController which is controlled by a NavigationController. I want to send the indexPath.row to the class called by the NavigationController, is…
Wildchild89
  • 83
  • 2
  • 12