Linked Questions
12 questions linked to/from UITableView - change section header color
1 vote
1 answer
891 views
change background color of header in UITableView [duplicate]
how to change the background color of header in UITableView. But it should only for on showing headers. I implemented the following delegate - (UIView *)tableView:(UITableView *)tableView ...
62 votes
18 answers
77k views
Change the sections header background color in UITableView using an array of headers
I have a array of headers that I use let sectionHeaderTitleArray = ["test1","test2","test3] and they are showed using func tableView[tableView: UITableView, titleForHeaderInSection section: Int) -&...
29 votes
15 answers
41k views
iOS7 - Change UINavigationBar border color
Is it possible to change the grey border-bottom color of the UINavigationBar in iOS7? I already tried to remove to border, but this is not working: [[UINavigationBar appearance] setShadowImage:[[...
19 votes
6 answers
15k views
Changing the color of UITableView section headers
OK, I know that this has been asked previously, so please forgive me for asking again. It just seems like there has got to be an easier way to do this. Is there a 'simple' way to change the ...
10 votes
3 answers
15k views
Changing color of section header in UITableview
i have pretty simple simple question (i hope so). How do i change the section header color in a UITableview from default blue to black transparent? Thanks in advance.
1 vote
1 answer
7k views
Change UITableView header tint color
I have implemented the following code in order to change the tint of the section headers in a tableView. I just want to change the color tint, not to apply a view from my own. The app, however, seems ...
2 votes
2 answers
3k views
How could we make the section header touchable in UITable?
I wanna make it like, touch the section header then jump to end of this section. How could I do it? Any suggestions? Cheers - (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(...
0 votes
3 answers
2k views
How to set color for separator for UITableView
How I can set the color of separator of sections? I set all posible colors to "f5f5f5", but the separator is "ededed". Why it can be?
0 votes
5 answers
1k views
UITableView grouped set background colour transparent
This is what my view looks like : And this is how I want it to be (ignoring the text color) As you can see that the view between the headers should be cleared. But that's not happening. This is ...
1 vote
1 answer
1k views
Change the Header in a UITableView
Do you know the name of the part where "california" is written, and how i can change its background color and textcolor ? Thanks, Niels
0 votes
2 answers
1k views
UITableView headers - iPhone
In my iPhone app, I'd like to alter the headers on my UITableView. How can I keep the same gradient/alpha/nice looking style of the gray, default headers, except change the color of it?
0 votes
1 answer
976 views
How to change titleForHeader background color in iOS?
i want to change the titleForHeader background color in iOS. - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section { return @"A"; } this method show the ...