I have subclassed the UITableView control, and the style is grouped, but I do not need the cell separators. I tried setting my table view's separatorStyle to none, but it doesn't work. Can any one help me out?

link|improve this question
feedback

5 Answers

In a grouped table view, setting separatorStyle doesn't do anything. If you want to hide it, just do the following:

tableView.separatorColor = [UIColor clearColor];
link|improve this answer
awesome, so maybe I can animate a little rainbow colored effect from the bottom to the top, to the enjoyment of the user ;) – JeroenEijkhof May 26 '11 at 3:03
1  
+1, works like charm. @seperatorStyle property doesn't works on group table view. – HelmiB Jun 9 '11 at 6:02
Hi Sam, I tried setting group table's color but it does nothing for me! I mean [groupedTableView setSeparatorColor:[UIColor whiteColor]]; statement doesn't set separator color to white. The separator color always appears as default light brown color but it works fine for plain table! Can you help me what could be wrong? – AppleDeveloper Aug 22 '11 at 13:46
I have just noticed that the separator color appears when I select the cell but otherwise it's brown! – AppleDeveloper Aug 23 '11 at 10:36
This was happening because we were setting custom background when table type is Grouped with separator color hard coded to lightgray. Now its been fixed. Sorry for false alarm! – AppleDeveloper Aug 23 '11 at 10:48
show 1 more comment
feedback

Use tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

link|improve this answer
5  
This doesn't work for any tableView using the grouped style (per question). – Steven Fisher May 25 '11 at 23:17
3  
I find that for a grouped tableview this separatorStyle setting can remove an annoying white border on the bottom of the group when separatorColor clearColor is also used (in iOS 5; didn't have the problem in < 5) – ransomweaver Oct 8 '11 at 13:54
feedback

How about setSeparatorColor to your cell's background color?

link|improve this answer
this might help , i'll try that out ... – Jay Mooney Nov 13 '08 at 9:30
I tried tht but there is no property called seperatorColor . i have subclassed the cell also , so in the cell's init i have done foll : self.separatorStyle = UITableViewCellSeparatorStyleNone; but its gives compile time error :( – Chris Jester-Young Nov 13 '08 at 9:54
I think you misspell it. It is separatorColor. – leonho Nov 13 '08 at 10:42
You could try using [UIColor clearColor], too. – Alex Nov 13 '08 at 16:28
i have used the proper spelling , But these properties are avaiable only for the table view .I want to set the peoperty for the UiTableViewCell obj. As they have mentioned in the reference that the cell separator properties need to be set . I donno y cell and table prop has 2 b set. :( – Jay Mooney Nov 14 '08 at 5:25
feedback

This did the trick for me:

[dayTableView setSeparatorColor:[UIColor whiteColor]]; //or your background color
link|improve this answer
thanks a lot that is the correct way. – Ayaz Alavi Jun 1 '10 at 15:53
Akshay, this doesn't work for me. For me group table's separator color always appear default brown no matter what color I set but it works fine for plain table! Do you have any idea what could be wrong? – AppleDeveloper Aug 22 '11 at 13:47
feedback

It appears that (a) the thinnest you can get s inline separators and (b) you can't change the style after you create the UITableView. From the docs:

Table View Style

The style of the table view.

typedef enum {
   UITableViewStylePlain,
   UITableViewStyleGrouped
} UITableViewStyle;

Constants

UITableViewStylePlain

A plain table view. Any section headers or footers are displayed as inline separators and float when the table view is scrolled.

Available in iPhone OS 2.0 and later.

Declared in UITableView.h

UITableViewStyleGrouped

A table view whose sections present distinct groups of rows. The section headers and footers do not float.

Available in iPhone OS 2.0 and later.

Declared in UITableView.h

Discussion

You set the table style when you initialize the table view (see initWithFrame:style:). You cannot modify the style thereafter.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown