Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Apple's iPhone apps such as Music and Contants use a search bar in a UITableView. When you scroll down so that the search bar moves down, the empty space above the scroll view's contents has a light gray background color (see screenshot).

Screenshot of Contacts app showing light gray background

(Notice that the search bar has a slightly darker edge line at its top. This is not there for the default UISearchBar, but subclassing should take care of that.)

I tried setting the background color of the UITableView, but that affects the rows as well. Does anyone know how to achieve this effect? Am I going to have to override implement drawRect: or is there a built in way?

share|improve this question
A little late I know, but have a look at my answer if you get some time. – Nick Farina Oct 11 '09 at 19:58
3  

9 Answers

up vote 17 down vote accepted

Setting transparencies is bad for performance. What you want is the gray area above the search bar, but it should still be white beyond the end of the list.

You can add a subview to your UITableView that lives above the content instead.

CGRect frame = self.list.bounds;
frame.origin.y = -frame.size.height;
UIView* grayView = [[UIView alloc] initWithFrame:frame];
grayView.backgroundColor = [UIColor grayColor];
[self.listView addSubview:grayView];
[grayView release];

You could add more fancy stuff to the view if you like, perhaps a fade, or a divider line without subclassing UISearchBar.

share|improve this answer

This is one of my very favorite tricks.

UIView *topview = [[[UIView alloc] initWithFrame:CGRectMake(0,-480,320,480)] autorelease];
topview.backgroundColor = [UIColor colorWithRed:226.0/255.0 green:231.0/255.0 blue:238.0/255.0 alpha:1];

[self.tableView addSubview:topview];

Basically you're creating a big view the size of the screen and placing it "above" the content area. You'll never be able to scroll up past it.

And don't worry about the memory impact of a UIView that's 320x480 pixels, it won't consume any significant memory because the CALayer doesn't have any meaningful content.

share|improve this answer
This is what most apps do. It is however possible to scroll past a whole screen's worth by flicking the scrollview very rapidly, which is why I prefer to place the coloured view statically behind the tableview and have the tableview's background transparent (but with solid backgrounded cells views. – U62 Oct 16 '09 at 13:15

I've only found one way to do this. You have to set the backgroundColor of the UITableView to be transparent, set the backgroundColor of the cell's contentView to whatever colour you want the actual cells to be, then crucially you have to get the light grey colour to appear behind the UITableView. That last step you can do by either setting the backgroundColour of the UIWindow, or of whatever is containing or your tableViewController.

So, assuming you have a view controller that is derived from UITableViewController, insert these lines in the -(void)viewDidLoad method:-

// sets the background of the table to be transparent
self.tableView.backgroundColor = [UIColor colorWithWhite:1.0 alpha:0.0];
// assuming we are inside a navigation or tab controller, set the background
self.parentViewController.view.backgroundColor = [UIColor lightGrayColor];

Then inside the part of tableView:cellForRowAtIndexPath: that creates new cells, add:-

// set an opaque background for the cells 
cell.contentView.backgroundColor = [UIColor whiteColor];
share|improve this answer
1  
Using transparent backgrounds is the very last resort. It will affect scrolling performance tremendously. Simply adding a gray subview to the UIListView gives the wanted effect, is more customizable, and has no bad effects on performance. – PeyloW Aug 29 '09 at 10:53
Like I said, I tried all the obvious ways to achieve this effect, like all the things the other answers suggest and none of those worked. I'm the only one to provide a working solution and no, it does not affect scrolling performance at all - I've tried it on the simulator and the device. But thanks to your downvote, my solution has the save votes as all the wrong answers. – U62 Aug 29 '09 at 11:17

I don't think you want to override drawRect. Most likely what you're seeing is the background colour of another view or the window, which lies "behind" (i.e. is a superview of) the table view. There's usually a fairly complex layers of UIViews in Apple's UI widgets. Explore the view hierarchy in GDB, look at [myView superview] and then [someSuperView subviews] and try manipulating their BG colours in the debugger to see if you can find which one it is. However, if you implement a fix this way, be warned that it may not be future compatible.

You might also try setting the BG colour of one of the views behind the tableview in Interface Builder (or of the window itself).

share|improve this answer

Wouldn't that be the background of the view showing through? Have you tried coloring that?

share|improve this answer
The UITableView is used directly, but I did try placing it in a view and coloring that. It was still white, dispite that the view's background color was a painfully bright red. – T . Jul 22 '09 at 16:05
Interesting. What about all the websites that mention things like this? reigndesign.com/blog/liven-up-your-boring-uitableview-part-1 – Sneakyness Jul 22 '09 at 16:14

If you are using a tableviewcell, you can set the view background to be opaque white. Then use

self.tableView.backgroundColor = [UIColor grayColor];

in the view did load method.

share|improve this answer

I'm sure that that is [UITableView backgroundColor]. You have affected rows, because rows have backgroundColor == clear (or semi-transparent). So, If you'll make rows non-trasparent, all will work fine. This will be solution.

share|improve this answer

I followed the tip outlined by Peylow, for a UITableView, by simply adding a subview. My only change from the code was to grab a color a bit closer to the one used in Apple apps, plus I got it a bit closer to Apple's look of having a line above the UISearchbar by reducing the frame origin y coordinate by one pixel:

frame.origin.y = -frame.size.height - 1
share|improve this answer

I will give you the best way to do this.
First set the background color of the table view to the one you want in interface builder.
Then respond to the UITableView delegate tableView:willDisplayCell:ForIndexPath: method like this

- (void)tableView:(UITableView*)tableView willDisplayCell:(UITableViewCelll*)cell forIndexPath:(NSINdexPath*)indexPath
{
     [cell setBackgroundColor:[UIColor whiteColor]];
}


Another Method is :
in ViewDidLoad method (or anywhere you like) set the tableView background color to clear color like this:

self.tableView.backgroundColor = [UIColor clear color];

and then set the superview color to white

self.tableView.superview.backgroundColor = [UIColor clearColor];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.