When I set the backgroundColor for my UITableView it works fine on iPhone (device and simulator) but NOT on the iPad simulator. Instead I get a light gray background for any color I set including groupTableViewBackgroundColor.

Steps to reproduce:

  1. Create a new navigation-based project.
  2. Open RootViewController.xib and set the table view style to "Grouped".
  3. Add this responder to the RootViewController:

    - (void)viewDidLoad {
    [super viewDidLoad];
    self.view.backgroundColor = [UIColor blackColor];
    }
  4. Select Simulator SDK 3.2, build and run.
  5. You will get a black background (device and simulator).
  6. Select your target in the project tree.
  7. Click on Project : Upgrade Current Target for iPad.
  8. Build and run.
  9. You will get a light gray background.
  10. Revert the table view style to Plain and you will get a black background.

Thanks for your help!

link|improve this question

feedback

3 Answers

up vote 131 down vote accepted

Try one of these.

[myTableView setBackgroundView:nil];
[myTableView setBackgroundView:[[[UIView alloc] init] autorelease]];
link|improve this answer
3  
I don't know if there are side effects but it works! Thanks! self.tableView.backgroundView = nil; – rjobidon Apr 22 '10 at 4:19
1  
Wow it works! Why is this? – Tejaswi Yerukalapudi Apr 26 '10 at 23:11
19  
VERY VERY IMPORTANT: This works only with SDK 3.2. For backward compatibility with 3.1.3. and earlier you must check if the table view responds to the backgroundView property: if ([self.tableView respondsToSelector:@selector(backgroundView)]) self.tableView.backgroundView = nil; otherwise you app will crash and exit abruptly, you can trust me! – rjobidon May 5 '10 at 23:50
2  
This was driving me crazy, thanks for much for this answer, and @rjobidon for the important compatibility note! – Bogatyr Nov 7 '10 at 9:28
1  
yes, I tried the above solution and it worked for me. Can anyone tell me what is this issue actually. Why when we run the app, it is greyed out? – Naveen May 16 '11 at 11:43
show 3 more comments
feedback

Thanks a lot for this solution. I applied this on a UITableView property with IBOutlet in a UIViewController and it works well like:

[panelTable setBackgroundView:nil];
[panelTable setBackgroundView:[[[UIView alloc] init] autorelease]];
[panelTable setBackgroundColor:UIColor.clearColor]; // Make the table view transparent
link|improve this answer
there is not any need for the middle line [panelTable setBackgroundView:[[[UIView alloc] init] autorelease]]; – NSMutableArray Retained Mar 16 '11 at 5:10
3  
Freezing Fire: actually there is. Without it, you get weird drawing artifacts in the table cell borders. – Hilton Campbell Mar 16 '11 at 22:01
feedback

On iPad the backgroundView property seems to be used to create the gray background color for grouped tables. So for changing the background color for grouped tables on iPad one should nil out the backgroundView property and then set the backgroundColor on the desired table view.

- (void)viewDidLoad
{
    [super viewDidLoad];

    // If you need to support iOS < 3.2, check for the availability of the
    // backgroundView property.
    if ([self.tableView respondsToSelector:@selector(setBackgroundView:)]) {
        self.tableView.backgroundView = nil;
    }
    self.tableView.backgroundColor = [UIColor whiteColor];
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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