清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>
//设置UITableViewCell的选中背景颜色的方法
UIView *view = [[UIView alloc]init];
view.backgroundColor=[UIColor redColor];
cell.selectedBackgroundView=view;
//设置UITableViewCell的选中字体颜色的方法:
cell.selectedTextColor=[UIColor blackColor];//默认显示为白色