The tintcolor tag has no wiki summary.
8
votes
2answers
9k views
UIToolbar tint on iOS 4
just switched to iOS 4 on my iPhone 3GS and some of my apps broke.
One issue I had is that I had a UIToolbar with some buttons, tinted to pink, that worked well on the 3.1.3 OS. After upgrading to ...
5
votes
3answers
3k views
Gray UISearchBar w/matching scope bar programmatically
I'm trying to recreate this UISearchBar (as seen in the Table Search example code):
All the examples I've seen to do this involve using a xib, however I need to do it programmatically. The problem ...
4
votes
2answers
427 views
Can I fade / animate the tintColor of a UIToolbar?
I am trying to animate a UIToolbar's tintColor property, to change it from one tintColor to another.
Here is the code I am trying. Unfortunately, the change occurs immediately and does not fade from ...
3
votes
1answer
442 views
disappearing navigationbar color in iOS 4.3
I'm setting the tintColor of a navigation bar with this command:
[self.navigationController.navigationBar setTintColor:[UIColor colorWithRed:0.35 green:0.09 blue:0.2 alpha:1.0]];
but in iOS 4.3 ...
2
votes
2answers
2k views
Change UINavigationbar color for “More” tab?
I'm currently using
self.navigationController.navigationBar.tintColor = [UIColor orangeColor];
to change the color of my UINavigationBars in my iOS application. However my app now has so many tab ...
1
vote
1answer
107 views
iOS: What does tint color actually do?
Suppose a segmented control's tint color is set to RGB(69, 175, 225) but the actually color from color picker range from (top most) RGB(146, 181, 211) to (bottom most) RGB(82, 118, 147).
So how can I ...
1
vote
2answers
294 views
UISLider setting thumb/minimumTrack/maximumTrack tint color gets exception
According to developer.apple I should be able to set UISLider's property - thumbTintColor/minimumTrackTintColor/maximumTrackTintColor - reference ...
1
vote
2answers
851 views
Tint color of UINavigationBar in UIPopoverController doesn't work
The code:
UIViewController *viewController = [[UIViewController alloc] initWithNibName:@"NibName" bundle:nil];
UINavigationController *navigationController = [[UINavigationController alloc] ...
1
vote
3answers
936 views
IPAD - UISplitViewController's MainWindow NavigationBar tintColor Problem
Problem:
TintColor of the navigationBar of mainWindow gets back to grey color everytime I turn the iPad to portrait mode and show the popover.
Details:
I created application from Xcode 3.2.5 and ...
0
votes
0answers
30 views
Alternative to setTintColor for pre-iOS5 UIBarButtonItems?
are there any alternatives to using the accessor setTintColor for UIBarButtonItems in order to add ios4 compatibility?
is it possible to modify the setter to include a conditional statement for ...
0
votes
1answer
25 views
Setting border color of UISearchBar in UISearchDisplayController
My xib contains a UITableView and a UISearchDisplayController. I'm setting colors and having a bit of trouble with the search bar.
I'm setting its color like this:
...
0
votes
1answer
52 views
Navigation bar type: the code is?
I have a Navigation Bar created via code. When I change it's tintColor the bar is bad. Hoverer the color is plain and not iOS style. Can I change this? Thanks
UINavigationController ...
0
votes
2answers
100 views
UIsegmentedControl setTintColor strange behaviour
I have a UISegmentedControl containing 3 options for selecting map type. I am setting tintcolor as black as default and I want to set green color for selected segment.
Here is declaration of ...
0
votes
0answers
21 views
Change the search bar color of the address book (contact picker)
I tried to change the color of the search bar in the address book in this way:
picker.searchDisplayController.searchBar.tintColor = [UIColor blackColor];
Nothing changes. Am I wronging anything or ...
0
votes
2answers
1k views
UIBarButtonItem tintColor with UINavigationController
I have a navigation controller with 2 UIBarButtonItems in my navigation bar. I want to change the tint color only for the one on the right. I have found a way in static to do that:
...
0
votes
1answer
476 views
UINavigationBar change Tint color with animation
Is it possible to change the tint with animation for a smoother effect?
This doesn't work for me:
[UIView beginAnimations:nil context:nil];
[self.navigationController.navigationBar ...
0
votes
2answers
532 views
iPhone - How to set custom color in the “More” item's navigation bar?
G'day All
This is a small detail but it does affect the professional finish of my app.
My app follows the pattern of a tab bar with a navigation bar on each tab with more than 5 tabs hence a "More" ...
0
votes
1answer
889 views
Changing tintColor of UISearchBar inside ABPeoplePickerNavigationController
I am tyring to customize the colors a bit in a ABPeoplePickerNavigationController below is my complete code:
ABPeoplePickerNavigationController *objPeoplePicker = [[ABPeoplePickerNavigationController ...
0
votes
1answer
808 views
Toolbar Tint Colour Change Not changing colour of button in iOS 4 Xcode
I'm trying to make my app compatible with iOS 4 Multitasking so it stays open when the home button is pressed.
At one point, a button is pressed and it opens a new view and changes the tint colour of ...
0
votes
1answer
487 views
iPhone NavBar with tintColor looks Flat
I am able to use tintColor to change the color of my NavBar, but this causes the NavBar to appear "flat". The standard NavBars have a shading to them - is there any way to accomplish this shading ...
0
votes
2answers
327 views
Different navigation bar tints inside 1 single navigation controller?
My application has a navigation view controller with 2 views :
- a root view : i'd like the tint color for its navigation bar to be black
- a sub view : i'd like the tint color for its navigation bar ...
-1
votes
1answer
57 views
UINavigationBar BackButton custom TintColor
Hi i am trying to get another TintColor on my BackButton in my UINavigationBar. I would like to change only the tintcolor and not to replace the whole button. Are there any suggestions on ...