1.系統預設的顏色設定
//無色 cell.selectionstyle = uitableviewcellselectionstylenone;
//藍色 cell.selectionstyle = uitableviewcellselectionstyleblue;
//灰色 cell.selectionstyle = uitableviewcellselectionstylegray;
2.自定義顏色和背景設定
改變uitableviewcell選中時背景色:
uicolor *color = [[uicoloralloc]initwithred:0.0green:0.0blue:0.0alpha:1];//通過rgb來定義自己的顏色
cell.selectedbackgroundview = [[[uiview alloc] initwithframe:cell.frame] autorelease];
cell.selectedbackgroundview.backgroundcolor = [uicolor ******];
3.自定義uitableviewcell選中時背景
cell.selectedbackgroundview = [[[uiimageview alloc] initwithimage:[uiimage imagenamed:@"cellart.png"]] autorelease];
字型顏色: cell.textlabel.highlightedtextcolor = [uicolor ***color]; [cell.textlabel settextcolor:color]
4.設定tableviewcell間的分割線的顏色
[thetableview setseparatorcolor:[uicolor ***x ]];
iOS 中tableview的使用
section總數 nsarray sectionindextitlesfortab leview uitableview tableview section titles 每個section顯示的標題 nsstring tableview uitableview tableview titlefo...
IOS中TableView的用法
一 uitableview 1.資料展示的條件 1 uitableview的所有資料都是由資料來源 datasource 提供的,所以要想在uitableview展示資料,必須設定uitableview的datasource資料來源物件 2 要想當uitableview的datasource物件,必...
IOS8 設定TableView分割線
ios8 設定tableview separatorinset 分割線從邊框頂端開始 原創音訊 教主談遊戲第一期 創意能被偷走嗎?在ios8上 tableview setseparatorinset uiedgeinsetsmake 0,0,0,0 不起作用 經過測試加入下面方法 在ios7 8上都...