UITableView選中時顏色

2021-07-04 08:32:17 字數 1360 閱讀 6052

[cpp]view plain

copy

//無色

cell.selectionstyle = uitableviewcellselectionstylenone;  

//藍色

cell.selectionstyle = uitableviewcellselectionstyleblue;  

//灰色

cell.selectionstyle = uitableviewcellselectionstylegray;  

改變uitableviewcell選中時背景色:

uicolor

*color = [[

uicolor

alloc]initwithred:

0.0green:

0.0blue:

0.0alpha:

1];//通過rgb來定義自己的顏色

[html]view plain

copy

cell.selectedbackgroundview

= [[[uiview alloc] initwithframe:cell.frame] autorelease];  

cell.selectedbackgroundview.backgroundcolor

= [uicolor ******];  

3自定義uitableviewcell選中時背景

[html]view plain

copy

cell.selectedbackgroundview

= [[[uiimageview alloc] initwithimage:[uiimage imagenamed:@"cellart.png"]] autorelease];   

還有字型顏色   

cell.textlabel.highlightedtextcolor

= [uicolor ***color];  [cell.textlabel settextcolor:color];//設定cell的字型的顏色  

[thetableview setseparatorcolor:[uicolor ***x ]];

5、設定cell中字型的顏色-(

uitableviewcell

*)tableview

:(uitableview

*)tableview cellforrowatindexpath

:(nsindexpath

*)indexpath

...}

設定UITableViewCell選中顏色但是無效

之前產品的互動效果是點選uitableviewcell不要有選中狀態,如今要加上選中效果卻發現有些不順。背景 uitableviewcell是自定義的 選中狀態的顏色是自定義顏色 跳轉回來後不要有選中狀態。顏色設定方式 選中狀態一閃而過 tableview deselectrowatindexpat...

UITableViewCell的選中時的顏色設定

無色 cell.selectionstyle uitableviewcellselectionstylenone 藍色 cell.selectionstyle uitableviewcellselectionstyleblue 灰色 cell.selectionstyle uitableviewce...

UITableViewCell的選中時的顏色設定

cpp view plain copy 無色 cell.selectionstyle uitableviewcellselectionstylenone 藍色 cell.selectionstyle uitableviewcellselectionstyleblue 灰色 cell.selectio...