古詩詞大全網 - 成語查詢 - UITableViewcell選中後怎麽去掉背景灰色

UITableViewcell選中後怎麽去掉背景灰色

1.系統默認的顏色設置

//無色

cell.selectionStyle=UITableViewCellSelectionStyleNone;

3//藍色,也就是系統默認的顏色

cell.selectionStyle=UITableViewCellSelectionStyleBlue;

//灰色

cell.selectionStyle=UITableViewCellSelectionStyleGrap;

2.自定義UITableViewCell選中後的背景顏色和背景圖片

UIColor* color=[[UIColor alloc]initWithRed:0.0 green:0.0 blue:0.0 alpha:1];//通過RGB來定義顏色

cell.selectedBackgroundView=[[UIView alloc]initWithFrame:cell.frame]autorelease];

cell.selectedBackgroundView.backgroundColor=[UIColor ***]或color;

自定義選中後的背景圖片

cell.selectedBackgroundView=[[[UIImageView alloc]initWithImage:[UIImage imageNamed:@"123.png"]]autorelease];

設置UITableViewCell中的字體顏色時用

8cell.textLabel.highlightedTextColor=[UIColor **color];