【发布时间】:2013-09-22 13:17:19
【问题描述】:
我正在开发一个应用程序,它在 iOS 6 上运行得非常好。在 iOS7 上,该应用程序有几个布局和一般的外观问题。一个是无法将分组表视图的背景颜色设置为透明。这是我的代码,它不再起作用了
tableForDetails = [[UITableView alloc]initWithFrame:CGRectMake(0, yAxisTable, 320, 150) style:UITableViewStyleGrouped];
UIColor *backGroundColor = [UIColor clearColor];
UIView *bview = [[UIView alloc]init];
[bview setBackgroundColor:backGroundColor];
[tableForDetails setBackgroundView:bview];
非常感谢您的帮助。谢谢
【问题讨论】:
标签: uitableview transparency ios7 xcode5