我正在使用我的iPhone應用程序的分組表格視圖,爲此我需要將所選背景顏色更改爲紅色。我可以設置它,但問題是第一個表格單元的視圖不在表格單元格之外。如何更改分組的TableViews選擇的背景顏色
-1
A
回答
0
嘗試將此....
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
cell.backgroundColor = [UIColor clearColor]; // clear the cell background color
// Configure the cell.
return cell;
}
0
您可以使用下面的代碼
1)cell.selectionStyle = UITableViewCellSelectionStyleRed;
OR
2)細胞= [[[ALLOC的UITableViewCell] initWithFrame:方法CGRectZero reuseIdentifier:CellIdentifier]自動釋放];
UIView *selectionColor = [[UIView alloc] init];
selectionColor.backgroundColor = [UIColor colorWithRed:(245/255.0) green:(245/255.0) blue:(245/255.0) alpha:1];
cell.selectedBackgroundView = selectionColor;
使用任何的上面的代碼將解決你的問題,如果你仍然問題沒有解決把你的代碼,我會盡力解決
相關問題
- 1. 更改ListView的背景選擇顏色?
- 2. 更改菜單背景顏色選擇
- 3. Laravel表::選擇更改背景顏色
- 4. 更改背景顏色選擇
- 5. 更改背景顏色選擇
- 6. 更改UITableViewCell背景顏色時選擇
- 7. 更改按鈕的背景顏色與我選擇的顏色
- 8. 更改tilelist上選擇的背景顏色和邊框顏色?
- 9. 如何更改TextBox的「未選擇狀態」的背景顏色?
- 10. 如何更改選擇標籤的背景顏色?
- 11. 如何根據具體的選擇更改textarea背景顏色
- 12. 如何更改選擇的背景顏色
- 13. 在選擇顏色更改背景顏色
- 14. 使用顏色選擇器更改網站背景顏色
- 15. 更改所選JToggleButton的背景顏色
- 16. Bootstrap Multiselect:如果沒有選擇,如何更改背景顏色
- 17. 選擇未禁用選項時更改選擇背景顏色
- 18. 在選擇框中更改所選選項的背景顏色
- 19. 如何更改gnuplot的背景顏色?
- 20. 如何更改PopupMenu背景的顏色
- 21. 如何更改SFSafariViewController的背景顏色?
- 22. 如何更改ListViewItem的背景顏色?
- 23. 如何更改Radscheduler的背景顏色
- 24. 如何更改apDiv的背景顏色?
- 25. 如何更改NSPopupButton的背景顏色?
- 26. 如何更改ggvis的背景顏色?
- 27. 如何更改JOptionPane的背景顏色?
- 28. 如何更改editText的背景顏色?
- 29. 如何更改GtkTextView的背景顏色?
- 30. 如何更改JLabel的背景顏色?