IOS7 UITableCell背景透明问题

近期由于坑爹的ios7更新,导致了一系列问题,这里说说由于ios7更新导致的UITableVIewCell 造成的背景不在透明的问题。

实现代理方法:

-(void)tableView:(UITableView*)tableView  willDisplayCell:(UITableViewCell*)cellforRowAtIndexPath:(NSIndexPath*)indexPath
{
[cell setBackgroundColor:[UIColor clearColor]];
}


猜你喜欢

转载自blog.csdn.net/liz3002/article/details/12585333