1.设置UITableViewCell的背景色透明方法:
cell.backgroundColor=[UIColor clearColor];
或者设置颜色透明度为0:
cell.backgroundColor = [UIColor colorWithWhite:0.0f alpha:0.0f];
2.设置UITableViewCell的选中颜色的方法:
UIView *view = [[UIView alloc]init]; view.backgroundColor=[UIColor redColor]; cell.selectedBackgroundView=view;
另,设置UITableViewCell的选中字体颜色的方法:
cell.selectedTextColor=[UIColor blackColor];//默认显示为白色
但是这段代码会产生一个警告,‘selectedTextColor‘ is deprecated : first deprecated in iOS 3.0,苹果表示已不建议使用。
时间: 2024-09-30 00:09:40