2011-11-20 22 views

回答

1

如果您想更改所選單元格的選定顏色。 cell.selectedcolor = [uicolor blackcolcor]; 或者您可以使用自定義tableeview細胞

UIView *bgColorView = [[UIView alloc] init]; 
[bgColorView setBackgroundColor:[UIColor redColor]]; 
[cell setSelectedBackgroundView:bgColorView]; 
[bgColorView release]; 
+0

問題IM面的變化背景顏色這種方法是,當我有上滾動again..color選擇發言權排10細胞呈現tableview..as也第20行.. – AKG

+1

@Akki爲什麼你把tableview單元的checkmark accesory如果不需要?爲rowatindexpath使用默認的tableview單元代碼,並把我的代碼放入它來改變選中的顏色變化。 – ICoder

+0

好的...但我也想multiselect是可能的..任何建議? – AKG