Tagged Questions
The uinavigationitem tag has no wiki summary.
37
votes
8answers
18k views
How do I change the title of the “back” button on a Navigation Bar
Currently the left bar button default value is the title of the view that loaded the current one, in other words the view to be shown when the button is pressed (back button).
I want to change the ...
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 ...
7
votes
1answer
5k views
UISegmentedControl, UIToolbar and UINavigationItem
I've create a UISegmentedControl and successfully attached it to my navigationItem.tableView.
But when I try instead to attach it to a UIToolbar, it blows up.
I'm sure I've seen UISegementedControls ...
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 ...
5
votes
3answers
3k views
Adjusting navigationItem.titleView's frame?
I noticed that the titleView's position depends on the rightbarbutton title. How can I set the frame of the titleView to be in the center instead?
I've tried setting titleView.frame, but to no ...
5
votes
1answer
2k views
iPhone Title and Subtitle in Navigation Bar
In my application, I'd like to have the navigation bar display a title and subtitle.
To that extent, I added the following code to my view controller:
// Replace titleView
CGRect ...
5
votes
2answers
7k views
UINavigation bar background in iPhone
I have applied following code to my application to change the navigation bar image.
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
[self.navigationController.navigationBar ...
4
votes
4answers
136 views
How to add several UIBarButtonItems to a NavigationBar?
I want to draw multiple buttons on a UINavigationBar. These will be either on right side or left side.
4
votes
1answer
2k views
UISegmentedControl embedded in a UINavigationBar/Item
I would like to embed a UISegmentedControl somewhere in my UINavigationControllers topbar.
It is no problem embedding it in a UIBarButtonItem and setting it as the left or right barButtonItem.
I can ...
4
votes
2answers
7k views
Adding back button to navigation bar
I've added a navigation bar to a UIViewController. It is displayed from another UIViewController only. I'd like to have a left side back button that is shaped similar to an arrow, just like the ...
3
votes
2answers
41 views
ı can't change title of navigationıtem
I need to learn how I can change title of navigation controller during the each implementation
in my main screen(Navigation controller view) I have the name of the city(NAV Title) and my second ...
3
votes
2answers
506 views
Idiom for Initializing UINavigationItem
Since UIViewController navigationItem outlets are deprecated (yes, I'm a bit behind), what is the correct idiom specifying the elements of a UINavigationItem?
I've seen several approaches suggested, ...
3
votes
2answers
483 views
UIImage in setBackBarButtonItem in UINavigationBar iphone
I am adding image in BackBarButtonItem of navigation bar, image gets in button but image is not scale to fill what would be the issue.
Here is the code i am using and it displays in following way.
...
3
votes
2answers
1k views
Placing a custom view based UIBarButtonItem in the navigation bar without default horizontal padding
How do I remove the horizontal padding to the left and right of custom left and right UINavigationBar items? There seems to be ~ 10 points of padding that iOS sets by default.
I'm customizing left ...
3
votes
2answers
2k views
How can I get a full-sized UINavigationBar titleView
I am trying to add a custom control as the titleView in a UINavigationBar. When I do so, despite setting the frame and the properties that would normally assume full width, I get this:
The bright ...
3
votes
1answer
2k views
What is the default fontsize, fontname and shadow for titles in Navigation Bar?
I'm trying to have a button on the self.navigationItem.rightButton that toggles a segmented control that is placed in self.navgivationItem.titleView .. this will however remove the title that is first ...
3
votes
3answers
9k views
iPhone: UINavigationBar with buttons - adjust the height
I am working on an iPhone application which works in both orientations: portrait and landscape.
I am using for one view and tableview embedded in an UINavigationController. The height of this ...
2
votes
1answer
65 views
How do I vertically correct the navigationBar's titleView text position when using a custom font?
We're using custom fonts for the titleView in the navigation bar.
Somehow Apple always draws this font too high.
How do I correct for this strange offset you get when you are using custom fonts in a ...
2
votes
2answers
175 views
LeftBarButtonItem with two buttons. One Button doesnt respond to tap
So I have two buttons in the leftBarButtonItem. This is my code.
NSString *todayString = @"...";
UIBarButtonItem *todayButton = [[[UIBarButtonItem alloc] initWithTitle:todayString ...
2
votes
1answer
118 views
Tap UINavigationBar title to change
I was wondering how I could create a Navigation Bar where the user could tap the title of the navigation bar, so that it will open a new modal view, similar to the Twitter application when the user is ...
2
votes
1answer
455 views
How add back button into navigation bar?
I have code in which i have hide default navigation back button. now i want to add new button at that place. and when press button then open main view or first screen of project. how i do that?
2
votes
0answers
224 views
Why pushviewcontroller is not working after dismissing presentmodalviewcontroller?
I have one application that has list of videos.When user clicks any of videos the video is played using mpmovieplayercontroller in full screen mode and landscape mode.moviewplayer controller contains ...
2
votes
0answers
272 views
UINavigationItem#titleView alignment problems
I am finding little information about using UINavigationItem#titleView with a custom font.
When I have done so, the font is misaligned vertically in the navigation bar.
This entry is partly to ...
2
votes
3answers
892 views
iPhone - Navigation bar Back button item is not responding
I have a fullscreen modalView called like this :
The modalView is called with :
PreferencesController *nextWindow = [[[PreferencesController alloc] initWithNibName:@"Preferences" bundle:nil] ...
2
votes
3answers
297 views
Change color of UIBarButtonSystemItemCancel
If I use the UIBarButtonSystemItemCancel, it's color is set to that of the navigation bar. However, in the Photos App, the "Cancel" button is shown with a blue background. How can I also set the ...
2
votes
1answer
2k views
Iphone/Ipad Add Image and Text to Navigation Title
I am simply trying to add an image and text to the navigationItem title. This is what I am doing, but it only shows the image and not the title. This seems like it would be pretty easy.
Example (
...
2
votes
1answer
342 views
UINavigationItem Back Button touch area too large
On this following screenshot, if I click on "v" from "Available Kiosks" this is launching the action of the back button... (not with the second "a").
I don't understand why, I've nothing special in ...
2
votes
1answer
515 views
UIBarButtonItem doesn't highlight when tapped if in a Toolbar?
I need two buttons on the left side of a nav bar. The only way I've figured out how to do that is by first putting them into a UIToolbar and then setting the leftBarButtonItem to that.
If I do this ...
2
votes
3answers
789 views
rightBarButtonItem info button, no space to the right
I have a UIViewController set up to display an info-button on the right in its UINavigationItem like this:
UIButton *infoButton = [UIButton buttonWithType:UIButtonTypeInfoLight];
[infoButton ...
2
votes
3answers
2k views
Back Navigation Button Not Showing up in Pushed View Controller
I have a problem where I can successfully push a new view controller from my root view controller (using the Navigation-based application using Core Data template), but the detail view, which is a ...
2
votes
1answer
2k views
How to hide/disable only the first uinavigationbar?
I've been wandering how to hide / remove / disable only the main or first navigation bar in the navigation controller so that I could put an image as a whole background screen but I couldn't find any ...
2
votes
2answers
696 views
Next and previous button like mail application in iPhone
How to create next and previous button in navigation bar like in mail application in iphone.
2
votes
4answers
2k views
UINavigationItem titleView position
I'm using UINavigationItem's titleView property to set a custom UILabel with my desired font size/color. Here's my code:
self.headerLabel = [[UILabel alloc] initWithFrame:CGRectMake(0.0, 0.0, 400.0, ...
2
votes
1answer
445 views
iPhone - Separated UINavigation Bar Items
Is there an existing API for this kind of separated controls for the UINavigationbar seen in Mail.app? More specifically this up and down arrows shown in the picture.
2
votes
3answers
5k views
NavigationItem setTitle doesn't work for second level UIViewController
in my app i have an UITabBarController with UINavigationControllers initialized like this
UINavigationController *newsNavigationController = [[UINavigationController alloc] ...
2
votes
3answers
2k views
Get correct bounds for navigationItem.titleView layoutSubviews
I have a subclass of UIView that I've added to as the titleView of a navigationItem using the following line of code:
self.navigationItem.titleView = tempview;
Easy enough. That works fine. My ...
2
votes
3answers
3k views
After pushViewController, how to disable the backBarButtonItem?
After pushViewController, how to disable the backBarButtonItem, that going back will not be possible?
tnx :)
2
votes
1answer
784 views
UINavigationItem.prompt appearing, moves the view below. How to listen for a new prompt?
I have a normal UINavigationController with a UIViewController contained in it, when my view controller has a prompt applied to it (via a UINavigationItem.prompt = @"some prompt"), the prompt is ...
2
votes
1answer
3k views
UINavigationBar background image via drawRect - issue with prompt animation
I'm adding a custom background image to my UINavigationBar by overriding the drawRect via a category.
- ( void )drawRect:( CGRect )rect{
[[UIImage imageNamed:@"navbar.png"] ...
2
votes
1answer
1k views
How do I calculate the optimal titleView width?
I am using navigation with a custom UIView subclass that becomes my titleView. I want to ensure this is the full available width.
Logically from my UIViewController's viewWillAppear:, this should be:
...
1
vote
2answers
31 views
How to get value of self.navigationItem.title and set as new variable?
On a detail view I'm trying to pull the navigation item's title which is dynamically set from my UITableView. I want to set it as an NSString value - so for example if my title is "potatoes" I want to ...
1
vote
2answers
43 views
Change right Bar ButtonItem from 'Save' to 'Done'
i have a NavigationItem with a right BarButtonItem and it's Identifier - initially - 'Save' to save entities i create on the view.
In my view i use a DatePicker. If this DatePicker is visible, the ...
1
vote
2answers
21 views
facebook app counter new entry
Im new to facebook app development. But i manage to get facebook login on my site.
No i wish to show feedback of my site (new entrys) and pass it to app counter.
(span .count uiSideNavCount) on ...
1
vote
1answer
119 views
Localize Done button of MPMoviePlayerViewController
I am using a MPMoviePlayerViewController to present videos. Everything works as expected, but if I switch the device's language to e.g. German, the "Done" button is not localized.
I tried to access ...
1
vote
2answers
99 views
How to create a UINavigationItem.TitleView based upon a nib file?
I have a UINavigationController bassed sequence of screens. On one of the screens I want to replace the standard title with a custom TitleView. The custom view will be created with a nib file and will ...
1
vote
1answer
134 views
NavigationItem.SetRightBarButtonItems throws exception
If I set only one right button on the NavBar it works perfectly.
But when I'm trying to set more than one button, they showed up, but clicking on them throws exceptions.
EventHandler ...
1
vote
2answers
138 views
How do I set custom navigation bar(title + titleView) for all navigation controllers and view controller?
I have a tabbed application with navigation controllers in tabs and view controller in them. All of them use the same navigation controller navigation bar: back button + logo image. Currently, I'm ...
1
vote
0answers
151 views
The correct place to set the UINavigationController's back button title
I'm a bit confused with setting the title of navigation item's back button. Usual this is done in the viewDidLoad but in my case the view controller is created without the view being loaded. On ...
1
vote
5answers
180 views
Adding BarButtonItem To NavigationBar
I Added a NavigationBar Through IB and I Tried to Add a BarButtonItem Programatically.....But it Doesn't Work.
- (void)viewDidLoad {
UIBarButtonItem *addButton = [[UIBarButtonItem alloc] ...
1
vote
4answers
69 views
How do I implement navigation button like Echofon for iPhone does?
Hi, how do I implement navigation button like Echofon does, especially with those icons (like Home, Messages) on the button ? I am new to iPhone development so I am really appreciated if someone can ...