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

I have a UITableViewController initialized with the grouped style and having multiple sections. For one of these sections, I'd like its constituent cells to be completely transparent and have no border. I plan to assign a custom view for every row in this section, but having that custom view surrounded by the grouped table cell looks bad :(

The following makes the background color of a cell black instead of transparent... And I still don't know how to get rid of the border.

cell.backgroundColor = [UIColor clearColor];

Any pointers? Thanks!

share|improve this question
stackoverflow.com/a/5818622/446489 is simplest solution – smilealdway Jun 19 '12 at 20:50
@smilealdway That's not for grouped cells. See Intentss's answer below. – Bill Mar 4 at 20:48

8 Answers

To remove the grouped background from a cell in a grouped table view cell:

This didn't work

cell.backgroundView = nil; // Did Not Work

This did

cell.backgroundView = [[[UIView alloc] initWithFrame:CGRectZero] autorelease];
share|improve this answer
This works for me for iOS 4.3.3 too and i prefer this solution, because you can remove the border for each cell individually instead of removing it for all cells of the table view. – anka Jul 26 '11 at 9:18
does this work for iOS less than 4.3.3 as well? – Maggie Jun 15 '12 at 14:20
Also set the cell.selectedBackgroundView using the same otherwise it may highlight. – nh32rg Jul 7 '12 at 23:03
+1 for nice answer – Parth Bhatt Oct 11 '12 at 9:25
1  
This is the best answer on StackOverflow. It's a tragedy that it hasn't been marked accepted. – Bill Mar 4 at 20:48
show 2 more comments

You have to actually set

tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

to remove the border of cells.

share|improve this answer
8  
The question is asking about grouped tables. tableView.separatorStyle = UITableViewCellSeparatorStyleNone doesn't work on grouped tables. – Steven Fisher Jul 26 '12 at 6:30

This is what worked for with having a Grouped style table

[tableView setSeparatorColor:[UIColor clearColor]];

share|improve this answer
This solution worked for me! And I think this is a better solution than "cell.backgroundView = [[[UIView alloc] initWithFrame:CGRectZero] autorelease];" from performance standpoint. I am using Grouped style table, iOS 5.1. Thanks – Rohit Gupta Sep 4 '12 at 8:15
2  
I don't know what kind of performance you are talking about, generally setting anything to [UIColor clearColor] is bad idea when it comes to graphics performance because it's a non-opqaue layer that forces the GPU to do transparency blending. – Intentss Sep 8 '12 at 0:22
1  
if I use the above with a grouped tableview, I get that the overall border of the table is gone, which is what I expected. It seems that separator color == table border. – abellina Jan 4 at 22:58
this worked for me,thanks – Hercules May 16 at 7:26

This code worked for me :)

[self.tableView setSeparatorColor:[UIColor clearColor]];
[self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];
share|improve this answer
Tried this in iOS 6.1 and it works. – ribeto Apr 15 at 18:10

Set the backgroundView of the cell to nil. For a grouped table, the cell image is part of that view.

share|improve this answer
Thanks! This was the trick I was looking for – Dustin Mar 3 '11 at 10:09
1  
Didn't work for iOS 4.3.3, or maybe I don't understand what you are talking about. – Intentss May 20 '11 at 1:31
1  
Also didn't work for me. – chris Jun 8 '11 at 14:46
cell.backgroundColor = [UIColor clearColor];

cell.backgroundView = [[[UIView alloc] initWithFrame:CGRectZero] autorelease];
share|improve this answer

Try using tableView.separatorColor = [UIColor clearColor];

And, don't use tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

I tested with both, if style is none, making the section borders invisible is not working, but instead just change its color, and section border will appear to be none.

iOS seems to be differentiating making an object none and making an object transparent

share|improve this answer

Setting a content view also gets rid of the border. Set your custom view to cell.contentView.

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.