0
votes
2answers
49 views
Scrollable UINavigationBar similar to Mobile Safari
My application uses a UINavigationController and the final view (detail view) lets you view an external website within the application using a UIWebView.
I'd like to free up some …
0
votes
1answer
27 views
How does the search display controller hide the navigation bar?
Hi there,
When you enter the search bar handled by a search display controller, it slides the view up and pushes the navigation bar up with it. This is easy enough to do, however, …
0
votes
2answers
203 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"] …
0
votes
1answer
75 views
How to make a UINavigationBar “thin”?
In certain places such as Mail.app, the top navigation bar is thinner in landscape mode than in portrait mode. Does anyone know how I could get something like this in my own app?
6
votes
3answers
2k views
Hiding UITabBar when pushing a UIView
I have a UITabBarController where the default view controller is a UINavigationController. I want to be able to hide the UITabBar of the UITabBarController when I push a certain vi …
0
votes
1answer
41 views
Colors and buttons change behavior when tinting iPhone navigationBar
Hi
I was wondering why everything stops behaving as it should when I do something like this:
self.navigationController.navigationBar.tintColor = [UIColor blackColor];
All my bu …
0
votes
2answers
36 views
Standard way to have a UIBarButtonItem point to the right?
When a new view controller is pushed onto the navigation stack, there is standard support for a back button with the title of the previous view controller. This button "points" to …
1
vote
2answers
91 views
How to add background image on iphone Navigation bar ?
Hi guys ! i want add an image background to my navigation bar like this :
what is the code ?
thank you
ist it right ?
//set custom background image
UIImageView *background …
1
vote
1answer
84 views
adding segmented control with in the Navigation Bar
can anybody help with the code on how to add segmented control within the navigation bar....i have seen it on some applications and want to implement it
thanks
0
votes
1answer
40 views
iPhone + UINavigationBar
Hello,
I have UINavigationController in my application, at some point I hide NavigationBar using following code:
self.navigationController.navigationBarHidden = YES;
Because of …
0
votes
2answers
100 views
how i can change the background color of navigationBar
Hi developer,
In my navigation bar i have two button at left and right position and a segmentetControll view at navigation title.
I want to change the background color of the navig …
1
vote
2answers
54 views
how to Remove the default navigation bar button
i am using a pushviewcontroller for navigation and i am getting default back button on the navigation bar..... i am trying to hide that default button and make my navigation bar pl …
9
votes
9answers
3k views
Are there free iPhone navigation bar icon sets available?
I want to use up/down icons like the ones used by "mail" in the upper-right corner when you're viewing a specific message. Are these icons available for free anywhere?
Beyond that …
0
votes
2answers
29 views
How do I make a UINavigationBar respond to taps?
I have a tableViewController/navController setup. I want to tap on the navbar of the navController to force the tableView back to the top row. I can see that the navbar is a UIView …
0
votes
1answer
49 views
How to change UIBarButtonItem’s type in UINaviagationBar at runtime?
Hi, I am working on an iPhone's view which composed 3 elements, UITextView, UIToolBar with an UIBarButtonItem.
The goal is, I want UIBarButtonItem change its style from 'edit' (U …
