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

Changing background of navigation item and adding image

I have a Root View controller, I need to know about changing its blue background to an image or changing its color and also want to add an image to its right side. For example in the below image i need to change the background of text Root View…
Francis F
  • 3,157
  • 3
  • 41
  • 79
0
votes
1 answer

Trying to subclass navigation controller in order to load external view Controller with separate .xib file in landscape mode in iOS

I have an iPad application which I have created using storyboards. I have created another single viewController which I have created using a separate .xib file. This viewController I need to call from the main application, and then later dismiss…
0
votes
1 answer

Bring UIView over the current UIVIewController on a NavigationApplication

I develop a project which is based on navigation structure. It is intended that in the current ViewController to display a generic view.This view contains information about the menu of the application. I must show this uiview when user tap a button…
Tyrone Prude
  • 362
  • 7
  • 19
0
votes
1 answer

TabBar with NavigationController

Actually I have application which is using NavigationController (Xcode 4.6.2 with storyboard). I'm able navigating next/back views based on functionality delivered by standard NavigationController plus swipe gestures. No I'm trying to add tab bar…
0
votes
2 answers

Created a custom cell and now navigation controller does not work

So I am working on a simple app and I ran into a little issue. I had a working app and before I had a table view which was embedded in a navigation controller, and when a cell was selected it would move into the next view where details about the…
user2615699
0
votes
1 answer

Push to a UIViewController from inside of NSObject's subclass

I am a newbie in Objective-C. I stucked into a very big problem. I have a ModelClass (named MyModel) for data management which is a subclass of NSObject... And to access the data the app needs authentication using a viewcontroller (say X) I don't…
0
votes
1 answer

Utility App - Done button no longer worked since I embedded both views in navigation controllers

OK so I've got a two page/view app using the Utility Template and to solve layout problems with the Info & Navigation Bars I have embedded the mainviewcontroller and the flipsideviewcontroller in a Navigation Controller each. The Info Button works…
0
votes
1 answer

How to determine the source view controller of a transition

I've created three different view controllers in Xcode's storyboard and connected them via a Navigation controller and appropriate segues. Is there a method which can be invoked in the destination view controller to determine from which view…
Regina Balusz
  • 91
  • 2
  • 11
0
votes
3 answers

UINavigationController is nil after pop

My project is complex (a bit too much probably) but the question is simple, here's the code ... self.vc = [[ClassName alloc] init]; if ([[self.navigationController.viewControllers lastObject] isKindOfClass:[ClassName class]]) { [self…
Lucabro
  • 525
  • 3
  • 9
  • 30
0
votes
1 answer

how to use/implement navigation drawer-like feature for older versions of android

http://developer.android.com/design/patterns/navigation-drawer.html I need this functionality, like gmail,linkedin,youtube app but that should support also older versions of android like 2.3
erdemgc
  • 1,701
  • 3
  • 23
  • 43
0
votes
1 answer

applicationDidEnterBackground fire popToViewController

I am using the Storyboard, then in my AppDelegate has no navigation controller programming on hand (all normal so far). Now i need to fire the "applicationDidEnterBackground" I would like my app point to the navigation controller to the first screen…
0
votes
1 answer

observer iphone for view controllers

Is there any way to to check the current navigation controller or the view controller currently visible in application delegate method. I want to create an Observer in application delegate that observes the controller being pushed and pop from the…
Ali Awais
  • 113
  • 1
  • 9
0
votes
1 answer

UINavigation not wotking in my iphone app after chaging root view controller

I am developing ios application for iphone. Am facing problem with the login screen.. i have developed app withoughtlogin screen.but now i want to give login option at first and after login i want to show my actual screens of app. so what i did with…
BhavikKama
  • 8,566
  • 12
  • 94
  • 164
0
votes
2 answers

IOS 6 Storyboard rotation doesn't work as expected

I'm developing an iOS6 App with storyboards and i'm encountering an unexpected beahviour. My app is almost in portrait mode , and i would keep this orientation in all the views except two.For this reason the project supports both landscape and…
0
votes
0 answers

Editing navigation of this website

http://www.madeinebor.com/themes/sliddr/index.htm#/logo As you see this website works by pressing space bar and some other keys, how can I change it to clicking. So when ever the user click in empty area, it navigate to next step. Or if thats not…
Alex Jj
  • 1,343
  • 10
  • 19
  • 30