Consider a UITableView object, myTableView.
// To make the background of the tableview transparent, use the following code : myTableView.backgroundColor = [UIColor clearColor];
(or)
[myTableView setBackgroundColor:[UIColor clearColor]]; // The above code will make the color of the tableview's background transparent.
//Now sometimes, this code will not do the trick. In such cases, what you have to do is use the following line of code along with the above code. myTableView.backgroundView = nil;
(or)
[myTableView setBackgroundView:nil]; // The above code will make the background view to nil.




