"Clear background for UITableView on iPad"

Wed 29 September 2010

//We need have this to clear background for UITableView on iPad

if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad){

[itemTable setBackgroundView:nil];

[itemTable setBackgroundView:[[[UIView alloc] init] autorelease]];

}