views:

1282

answers:

4

Hi all,

I am developing an iPad application in which I need a table view ( style grouped ) having background color as clearColor.

My problem is

[self.tableView setBackgroundColor:[UIColor clearColor]];

works well if the table view style is plain but when I switch to group table view the background color does not changes it stays gray in color.

FYI: the contentview background color of tableviewcell also does not change.

Is this a bug in iPhone-sdk or I am doing something wrong.

Thanks,

Madhup

+1  A: 

I'm also having this problem. Pretty sure it's a SDK bug

Jason Bornhorst
definitely an SDK bug from my understanding of the documentation. Wrestled with this for hours, Madhups solution seems to be the way to go for now.
Aaron
+1  A: 

You should report a bug with the Apple

Bill
+1  A: 

Apple officialy maintains a bug report website .

Bill
please add your comments in comments via add comments not as answers.
Madhup
+8  A: 

solved:

simply do:

[self.tableView setBackgroundView:nil];

Hope this helps.

Thanks,

Madhup

Madhup