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
2 answers

UINavigation Controller is not working with present modelviewcontrolller

I'm using navigation controller: So, from my first view to I go second view through push view controller And form second view to I go third view through present model view controller Now my problem is that, on third view I want to go fourth view…
Ali Raza
  • 1,183
  • 1
  • 10
  • 15
0
votes
1 answer

iphone navigationController autoloading to three level

i create i navigationController project name:autoload, then create two uiviewContorller named: second,three i want the process is load rootView the load second in method:"viewDidLoad" then auto load three in method"viewdidload", here is the…
phpxiaoxin
  • 1,043
  • 1
  • 9
  • 9
0
votes
2 answers

Jump to NavigationController from RootViewController

My App starts with a UINavigationController for my StartViewController (=UITableViewController). It has a Settings button to push to the UINavigationController for SettingsViewController (=UITableViewController). In it the user has to fill in some…
Raphael
  • 512
  • 1
  • 6
  • 18
0
votes
1 answer

navigationController.pushViewController the method returns undefined

Here I have a problem with the pushController because I want to use da, s my subclass like this class cellEmpty < cell @button_help.when(UIControlEventTouchUpInside) do push RecommendationController.alloc.init end def…
user1774481
  • 193
  • 3
  • 12
0
votes
0 answers

Mapview - Navigation Controller

I'm doing an IOS App with a MKMapView I use a navigation controller in order to go from the main menu to the mapview and from the mapview with a back button to the main menu again. This works ok!. But if I drop some annotations on the map and press…
0
votes
1 answer

Navigation bar causing problems

Before I added the navigation controller to storyboard, the program still worked. After I added the navigation bar to project, when I clicked the button from the homepage,it is supposed to link to the first page but, it can't and displays the black…
0
votes
1 answer

Setting navigationController.viewControllers messes up the stack later

I run into a weird issue. When setting navigationController.viewControllers to a new array whose viewControllers equal to the current UIViewController.viewControllers, then trying to segue to a new viewController (push segue), the…
Yony
  • 680
  • 1
  • 9
  • 20
0
votes
1 answer

iOS UINavigationController switching rootviewcontroller based on condition

I am writing an iOS application using storyboard. I created ViewControllerA, ViewControllerB and then embedded ViewControllerA in a UINavigationController on the storyboard. The app will show ViewControllerA when it is first launched, otherwise it…
0
votes
3 answers

The navigationController's alpha will reset ? When the app become active from background

I was in the AUIController ,the navigationController.navigationBar.alpha == 0.500 I pressed the home button . I clicked the appIcon get Back to AUIController. the navigationController.navigationBar.alpha to 1.000 how can I do to keep the…
xddxz.xu
  • 3
  • 3
0
votes
3 answers

Iphone UINavigationController onchange event

i have an app that uses a navbar. What i want to acomplish is make it transparent when i push in the last view from the nav sequence, and make it opaque when i click the back button on the nav i tried with on dealoc, but it doesn't work. My view is…
0
votes
1 answer

Addition of UIButtonTypeDetailDisclosure to toolbarItems causing runtime error

I am trying to add a UIButtonTypeDetailDisclosure to the bottom bar of my view. The app is building successfully but at runtime I'm getting error below: *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIButton…
Armand
  • 435
  • 1
  • 11
  • 23
0
votes
2 answers

UINavigationController titleView animation

I face the problem of have long titles in different pushed views. I thought about resize the size of it dynamically and I had no problems at all, but this could be ugly with really long titles, so I thought about the text banners that shows text…
0
votes
1 answer

iOS How to override NavigatonController's pop and push methods?

I'm working on an app that uses NavigationController based Storyboard, but the navigation is controlled by a segmentedControl. This way I can iterate over the x menus several times, then I can go back for about a year :D My question is: How can I…
kennyevo
  • 683
  • 4
  • 24
0
votes
1 answer

iOS App with multiple view controllers

My current application on appDelegate loads a main.xib screen which only contains an two images background and logo. This screen behind code determines if the user is logged on the system if not it will show the login else it will show the…
Angie
  • 475
  • 2
  • 6
  • 20
0
votes
1 answer

iOS7 ViewControllers won't appear after adding subView to topViewController

I've changed the behavior of my app when it goes to background, so it takes a snapshot, applies a blur effect on it, and then pushes the UIImageView into the rootViewController's subviews. It works perfectly on device (not on simulator...), but…
kennyevo
  • 683
  • 4
  • 24