Here is a quick fix to get rid of gray background color on grouped style UITableView.
if ([tableView respondsToSelector:@selector(backgroundView)]){
tableView.backgroundView = nil;
[tableView setBackgroundColor:[UIColor clearColor]];
}
if ([tableView respondsToSelector:@selector(backgroundView)]){
tableView.backgroundView = nil;
[tableView setBackgroundColor:[UIColor clearColor]];
}
5 comments:
If these operations are performed on tableView then there must not be any need for separate outlet named "loginTable"
This code is crashing !!!
It's amazing. I lost four hour to find out this strange problem. Thankf of lot
Hi Rahul,
I have an urgent position for Iphone OS application developer for our company, Ishi Systems in Ahmedabad.Drop me your resume at paulami.chatterjee@ishisystems.com in case you are interested and please visit us at www.ishisystems.com.
Making the tableview transparent is a HORRIBLE IDEA in terms of performance.
Also, why the hell do you check if the tableView implements -backgroundView? Of course it responds to that method, it's a table view.
Post a Comment