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
1
vote
1 answer

Using navigation controller of superview

I've made a custom view to which I add a custom button. This custom view goes as a subview to yet another view (Kal calendar for iphone) that I push into a navigation controller. Now the button in my custom view is connected to an IBAction in which…
msk
  • 527
  • 4
  • 7
  • 19
1
vote
2 answers

How to push to new View with programatically created UINavigationController?

I try many sings from this site but not get result. Now I open new View like this: //(I call this code from View called MainReportView) InfoController *info = (InfoController *)[self.storyboard…
Never_be
  • 839
  • 2
  • 10
  • 20
1
vote
1 answer

How to change status bar background with NavigationBar background image 44px height in iOS 7?

I'm using NavigationController with NavigationBar visible. I read from here Bars and Bar Buttons that Black, if using UIBarPositionTopAttached. Provided by the window background, if using UIBarPositionTop. First, I make my ViewController…
onmyway133
  • 45,645
  • 31
  • 257
  • 263
1
vote
1 answer

Create TableView after [TabBarController]->[NavigationController]->[TableView]

Here's what I've created : [TabBarController]->[NavigationController]->[TableView]. I want to create an new [TableView] that will be pushed when I select a cell in the first UITableView. I tried with a pushViewController method. It works but I can't…
Zoomzoom
  • 189
  • 3
  • 13
1
vote
5 answers

self.navigationController is nil after adding subview

here is my productscontroller.h ProductListViewController *productListViewController; ProductGridViewController *productGridViewController; UIButton *flipIndicatorButton; and i am adding list and gridview as a subview like this in my…
Nnp
  • 1,813
  • 7
  • 36
  • 62
1
vote
1 answer

InAppSettingsKit child pane not showing, using Navigation controller

I'm using InAppSettingsKit and my child panes are not showing up. I found a post (Stackoverflow) about using Navigation Controllers, which I am. On the General.plist I have the same view as the Root.plist. I have done some searching and all I can…
1
vote
3 answers

iphone: send back string value with navigationcontroller pop

This may be very basic, but I just can`t figure out what to do, so thanks for any response... I`m using a navigationcontroller and are currently on the second level in the stack. Here i set a string value and use popViewControllerAnimated to go…
Madoc
  • 1,605
  • 3
  • 17
  • 30
1
vote
5 answers

sending message to viewController from the application delegate

I'm new to obj C, I come from an AS3.0 background. Basically in this app I'm making, I'm using the applicationWillResignActive in the app delegate to react to a call coming in . I have a navigationController with a table view that just triggers…
bmanderscheid
  • 125
  • 2
  • 9
1
vote
2 answers

Navigate with arrow keys

Does somebody know an solution with jquery to navigate through an list with the arrow keys(up,down)? If i have an list for example, with links: First Link

Second Link

Third Link

John Smith
  • 6,105
  • 16
  • 58
  • 109
1
vote
2 answers

Why does my status bar (despite being set to "black opaque") turn grey when I change the navigationController's background color?

In my app, I have the status bar's style set to Black Opaque under Summary in the app's target. However, when I change my navigationController's background color with self.navigationController.view.backgroundColor = self.view.backgroundColor; the…
Doug Smith
  • 29,668
  • 57
  • 204
  • 388
1
vote
1 answer

Xcode - Navigation controller tutorial needed

Does anyone have a good navigation controller tutorial for newer Xcodes that still uses xib file instead of storyboard? I've been searching everywhere, and what I've found either is for Xcode version 2.0 or either uses storyboard.
Lord Zsolt
  • 6,492
  • 9
  • 46
  • 76
1
vote
2 answers

Call modal controller inside a navigation controller

I would like to call a modal view controller from a controller inside a navigation controller.. I should do [self presentModalViewController:<#(UIViewController *)#> animated:<#(BOOL)#>]; OR [self.navigationController…
1
vote
1 answer

Tinting a UIBarButtonItem Image instead of the background

So I have a UITabBarController that I'm able to tint the images of like so (I have an image that I use as the background): #define TAB_BAR_TINT_COLOR [UIColor colorWithRed:128/255.0 green:128/255.0 blue:128/255.0 alpha:1.0] #define…
gm0bbq
  • 31
  • 1
  • 3
1
vote
1 answer

Marquee with navigation arrows HTML

I have created a Marquee in my HTML with And it's working fine. But I would like to add arrows to this marquee so allow the user to the contents to move left/right faster.…
1
vote
2 answers

Pushing a UIViewController from another UIViewController - How to?

I have a UIViewController subclass(Say BBB) that inherited from already written custom UIViewController class(Say AAA). The BBB class have a UITableView in it and when the user tap on any cell of the UITableView, I want to push another…