Tagged Questions

The UINavigationController class implements a specialized iOS view controller that manages the navigation of hierarchical content.

learn more… | top users | synonyms

41
votes
7answers
36k views

iPhone hide Navigation Bar only on first page

I have the code below that hides and shows the navigational bar. It is hidden when the first view loads and then hidden when the "children" get called. Trouble is that I cannot find the event/action ...
29
votes
4answers
32k views

How to add a right button to a UINavigationController?

I am trying to add a refresh button to the top bar of a navigation controller with no success. Here is the header: @interface PropertyViewController : UINavigationController { } Here is how I am ...
27
votes
6answers
10k views

Popover with embedded navigation controller doesn't respect size on back nav

I have a UIPopoverController hosting a UINavigationController, which contains a small hierarchy of view controllers. I followed the docs and for each view controller, I set the view's popover-context ...
25
votes
6answers
11k views

UIPopoverController automatically resizing to max height on pushViewController

I have a popover containing a UINavigationController. I can display the popover fine, and it contains the navController just fine. The navController contains a tableView and when I select an item it ...
23
votes
9answers
8k views

Set programmatically a custom subclass of UINavigationBar in UINavigationController

Does anyone know how can I use my custom subclass of UINavigationBar if I instantiate UINavigationController programmatically (without IB)? Drag a UINavigationController in IB show me an under ...
22
votes
6answers
17k views

Custom animation for pushing a UIViewController

I want to show a custom animation when pushing a view controller: I would like to achieve something like an "expand" animation, that means the new view expands from a given rectangle, lets say ...
15
votes
1answer
178 views

difference between appdelegate and delegate in viewcontroller

I want to integrate one sample code with (for example SampleCode project) my iPhone application .In the sample code in firstViewController is added in MainWindow.xib and linked to viewController ...
15
votes
6answers
6k views

iOS: popViewController unexpected behavior

I've been searching the internet for a solution. There's nothing I could find. So: I'm using a UINavigationController. I am pushing two UIViewControllers onto it. In the second pushed ViewController i ...
15
votes
7answers
23k views

iPhone: Setting Navigation Bar Title

Hey all. I'm still pretty new to iPhone development, and I'm having a bit of trouble figuring out how to change the title of my Navigation Bar. On another question on this site somebody recommended ...
15
votes
5answers
26k views

Setting action for back button in navigation controller

I'm trying to overwrite the default action of the back button in a navigation controller. I've provided a target an action on the custom button. The odd thing is when assigning it though the ...
14
votes
3answers
9k views

Add toolbar to UITableViewController

What is the simplest way to add UIToolBar to UITableViewController? I'm depending on edit functionality, so I can't change UITableViewController to UIViewController easily.
14
votes
2answers
6k views

How to hide the “back” button in UINavigationController?

Do you know how to hide the 'back' button in a UINavigationController? Also, how to show it back, but I guess that's very similar to hiding it... Just like the mail application does on the iPhone ...
12
votes
1answer
1k views

UINavigationController custom animation

Any of you achieved to make custom animation like expand from middle in UINavigationController? (for example Facebook app when you select news feed from the launcher view) I seen one of trick like ...
12
votes
4answers
7k views

How to set the text of a back button on a UINavigationBar?

The Situation: I have a UIViewController that is governed by a navigation controller. I am able to set the title of the navigation bar covering the UIViewController by simply calling self.title = ...
12
votes
3answers
4k views

How to add 2 buttons into the uinavigationbar on the right side without IB?

how can i add 2 buttons into the uinavivationbar without IB? The 2 buttons should be align on the right side of the uinavigationbar. I know how i can add one button, but two?? Alex
11
votes
3answers
2k views

How to constrain autorotation to a single orientation for some views, while allowing all orientations on others?

This question is about iOS device rotation and multiple controlled views in a UINavigationController. Some views should be constrained to portrait orientation, and some should autorotate freely. If ...
11
votes
2answers
6k views

Custom UINavigationController UIToolbar Background Image

I have an iPhone application using UINavigationController and would like to customize the elements with custom background images. I was able to do this for the UINavigationController's UINavigationBar ...
10
votes
4answers
344 views

Change the height of NavigationBar and UIBarButtonItem elements inside it in Cocoa Touch

I suppose it's not strictly in line with Apple guidelines but I guess it must be possible somehow. I'd like to change the height of navigation bar inside UINavigationController and the height of ...
9
votes
1answer
2k views

UINavigationController navigation stack problems in Landscape Mode

I have a iPhone application that I am currently converting to a Universal Binary to work with the iPad. I have successfully implemented everything I need in terms of layout so that full landscape ...
9
votes
7answers
4k views

Hiding a UINavigationController's UIToolbar during viewWillDisappear:

I've got an iPhone application with a UITableView menu. When a row in the table is selected, the appropriate view controller is pushed onto the application's UINavigationController stack. My issue is ...
9
votes
2answers
4k views

Why is this over-releasing? UINavigationController / UITableview

I'm pushing a view controller onto my navigation controller's stack from within my TableViewController's didSelectRowAtIndexPath method as so: MyViewController *myViewController = [[MyViewController ...
8
votes
3answers
218 views

getting a “Could not load source: 6” console message when calling “pushViewController”??? (code attached)

Any ideas why I would be seeing a "Could not load source: 6" console message when calling "pushViewController"? The new view seems to come up ok. The code is: Code Except: EKEventViewController ...
8
votes
4answers
1k views

IOS new Facebook iPhone App UISplitViewController Layout

another break away .net developer here now trying to get used to the world of IOS. I like the layout of the new Facebook iPhone app (October 2011), and want to implement something similar in an app ...
8
votes
1answer
417 views

Why does Apple recommends to create modal navigation controllers programmatically?

"When presenting a navigation controller modally, it is often simpler to create and configure your navigation controller object programmatically. Although you could also use Interface Builder to do ...
8
votes
5answers
3k views

Prevent a UISearchDisplayController from hiding the navigation bar

Whenever a user begins editing a UISearchDisplayController's search bar, the search controller becomes active and hides the view's navigation bar while presenting the search table view. Is it possible ...
8
votes
5answers
6k views

How to HIDE the iPad keyboard from a MODAL view controller?

I'm trying to hide the iPad keyboard from a modal view controller but it doesn't work. I have tried resignFirstResponder but that doesn't have any affect if we are in a modal view controller. I tried ...
8
votes
4answers
7k views

self.title sets navigationController and tabBarItem's title? Why?

I do this in a UIViewController for one of my tabs: self.title = @"Welcome"; However, it's overwriting whatever I have for the tabBarItem. I have tried: self.tabBarItem.title = @"Home"; and ...
8
votes
1answer
4k views

UIToolbar items not showing

I have a UINavigationController that gets pushed a DetailsViewController. In this DetailsViewController, I want to use the toolbar that comes with every UINavigationController (atleast, since iPhone ...
8
votes
5answers
2k views

Loading a UIDatePicker in Landscape on a UINavigationController

I have a custom UINavigationController that supports auto-rotate. I also have a UIDatePicker on one of my views that I throw onto the stack of the Navigation controller. The auto-rotate works if I ...
7
votes
5answers
532 views

How do I force a specific UIInterfaceOrientation on an individual view in a UINavigationController?

Okay, so here's the situation: I have an app in which I only want ONE specific view in a UINavigationController to have a landscape orientation. This view is a UIImageView that I'm capturing a ...
7
votes
4answers
614 views

Customising the titleView in a UIPopoverController

On an iPad application, I want to be able to have multiple buttons in the top bar of a popover. I'm launching it like this: UINavigationController *nc = [[UINavigationController alloc] ...
7
votes
1answer
722 views

why does this different “addSubView” code cause differences in behavior

Why does changing the below code from the Old to New entry fix the following problem. Code: // OLD Entry - Did not work //[self.window addSubview:navigationController.view]; // NEW Entry - ...
7
votes
2answers
926 views

Create a navigation button like the iPod “Now Playing” button

In the iPod app, there's a right-facing navigation button as well as the usual left-facing "Back" button. It gets you back to the "Now Playing" screen. Is this a custom button, or is there a way to ...
7
votes
3answers
5k views

Adding a UINavigationController as a subview of UIView

I'm trying to display a UILabel on top of a UINavigationController. The problem is that when I add the UILabel as a subview of UIWindow it will not automatically rotate since it is not a subview of ...
7
votes
4answers
990 views

UIViewController: detecting drill-down and drill-up

Is there a way for a UIViewController (inside a navigation stack) to detect whether it is appearing because a drill-down or a drill-up was performed? In viewWillAppear, the UINavigationController's ...
7
votes
6answers
6k views

UINavigationController and autorotation

I have a UIViewController that returns YES in shouldAutorotateToInterfaceOrientation: for UIDeviceOrientationPortrait and NO for everything else. With that view on the top of the stack, I use ...
6
votes
3answers
135 views

Custom navigation bar

I was crawling Dribble and found the attached design. I was wondering how to do a custom navigation bar like this. I mean how create the navigation bar once and reuse it implicitly for every view ...
6
votes
1answer
1k views

SplitView but on iPhone

I want to create an iPhone app that uses a navigation scene similar to the one pictured in the link Please note I do not want this to only work for iPad, I want it to work for iPhone exactly as ...
6
votes
3answers
316 views

Is there a better way? Delegate -> Delegate -> Delegate

I have a view that loads a view, that needs to push a view to the main navigation controller. I've setup a delegate for each view, and basically make my call back up the 'chain' to the main ...
6
votes
9answers
1k views

UINavigationController: Hiding Back Button on One View Hides it For All Views

I have a UINavigationController that contains 3 UIViewControllers on the stack. View A - is the root View B - is pushed by View A and has `self.navigationItem.hidesBackButton = YES;` View C - is ...
6
votes
2answers
1k views

UIKit doesn't release controller if it is not removed with animation?

In a tab bar based application, If I have one controller pushed in the navigation stack from one tab and then, when another tab is active, I try to pop that controller, it doesn't get released unless ...
6
votes
3answers
3k views

Problems with UINavigationController inside of UITabBarController, viewWillAppear not called

As an overview, I'm having issues with a UINavigationController inside of a UITabBarController calling viewWillAppear whenever a view is popped from the stack. From the delegate, a ...
6
votes
1answer
1k views

UINavigationController back button half works in iPad landscape orientation

In an iPad application with a UINavigationController, everything works in portrait mode but in landscape mode the back button sometimes only goes back half a level. That is to say, on the first press ...
6
votes
3answers
3k views

Invisible back button when view controller pushed onto navigation controller

I'm using a navigation controller to drill into a detail view when a cell is tapped. When I push my view controller onto the navigation controllers stack, I expect to see a back button that I can tap ...
6
votes
7answers
11k views

How to change the Push and Pop animations in a navigation based app

I have a navigation based application and I want to change the animation of the push and pop animations. How would I do that?
6
votes
4answers
7k views

iphone - programatically call navigation controller back button

in my navigation control based iphone app, in a method I would like the programmatic equivalent of the back button being pressed and going back a view. i.e. automatically press the Jobs button as ...
6
votes
1answer
3k views

Showing/hiding navigation bar with smooth animation

I have a navigation based app. The first view (rootcontroller) starts with three large buttons only. No navigationbar. From there, everything else is tableviews and have navigation bars. I'm doing ...
6
votes
4answers
4k views

UISegmentedControl Selected Tint Not Showing

The tint that usually shows on a UISegmentedControl on the selected button isn't showing when I set the whole nav bar to black (self.navigationController.navigationBar.tintColor = [UIColor ...
6
votes
3answers
5k views

add background image to UITableViewController in Navigation based app

I have a navigation based app where I push TableViewControllers onto the stack. I would like to add a background image to all of my TableViewControllers. Not a color, but an image. I know how I can ...
6
votes
5answers
7k views

Programmatically pressing a UITabBar button in Xcode

Sorry for the newbie question. I have a UITabBar in my main window view as well as an array of UINavigationControllers for each Tab. The structure is similar to the iPod app in that the main views ...

1 2 3 4 5 55