1
A
回答
2
要得到任何你想要的顏色,你必須用自己的UIView更換selectedBackgroundView。
- (UITableViewCell *)tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"CellID";
UITableViewCell *cell = [table dequeueReusableCellWithIdentifier:CellIdentifier];
if (!cell) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
UIView *selectedBackground = [[[UIView alloc] init] autorelease];
selectedBackground.backgroundColor = [UIColor magentaColor];
cell.selectedBackgroundView = selectedBackground;
}
// configure cell
return cell;
}
1
1
製作你自己的UITableViewCell的子類。覆蓋的方法-(void)setSelected:(BOOL)selected
事情是這樣的:?
- (void)setSelected:(BOOL)selected {
[super setSelected:selected];
if (selected) {
self.backgroundColor = [UIColor greenColor];
} else {
self.backgroundColor = [UIColor whiteColor];
}
}
+0
+1中所做的那樣:好的但是問題是如何使用它與我的類已經tableview和哪些是UIViewController的子類...實際上是從未使用的UITableViewCell的子類...所以請給出相應的想法.... – Saawan 2010-10-21 05:00:21
相關問題
- 1. 如何設置自定義動作條的顏色/風格?
- 2. 如何設置自定義列表中選定行的背景顏色?
- 3. 如何在jqplot mekko圖表上設置自定義顏色?
- 4. 如何設置自定義顏色的特定單詞,如IDE
- 5. 設置與自定義顏色代碼
- 6. 在PhpStorm中設置自定義顏色
- 7. Flex列表行的自定義顏色
- 8. 重置自定義顏色表
- 9. 如何設置自定義顏色的Android
- 10. 如何設置webgrid頭的自定義字體顏色?
- 11. 如何爲vb.net中的按鈕設置自定義tabstop顏色
- 12. 如何設置自定義的UINavigationBarButton顏色
- 13. JavaFX的拾色器自定義顏色表格單元格
- 14. jqgrid自定義行顏色
- 15. 如何自定義角度的ui網格行背景顏色?
- 16. setSelectionBackGround()不爲自定義渲染單元格設置顏色
- 17. POI將單元格背景設置爲自定義顏色
- 18. 如何將iPhone上的單元格設置爲自定義顏色?
- 19. 如何將顏色設置爲Excel中的表格行#
- 20. 如何dymamically設置AngularJS ngTable表格行的背景顏色
- 21. 如何設置交替表格行的背景顏色?
- 22. 如何在XWPFTableCell上設置自定義背景顏色?
- 23. 如何設置自定義按鈕狀態背景顏色?
- 24. 如何將自定義顏色設置爲UIKit控件?
- 25. 如何在itext中設置自定義顏色?
- 26. Android Linkify如何設置自定義鏈接顏色?
- 27. 如何將自定義(RGB)顏色設置爲導航欄?
- 28. 如何在amCharts柱狀圖中設置自定義顏色?
- 29. iOS:如何使用滑塊設置自定義背景顏色?
- 30. JUNG2 - 如何設置自定義egde顏色/厚變壓器
+1感謝...我嘗試過,併成功,但框架不是roundRect .... – Saawan 2010-10-21 04:49:27
是的,這不會在分組風格。用分組風格實現同樣的事情要困難得多。一種方法是繼承UIView,就像在http://pessoal.org/blog/2009/02/25/customizing-the-background-border-colors-of-a-uitableview/ – 2010-10-21 09:33:24