UITableViewCell默認效果,當按下單元格時,單元格將變爲灰色背景.UITableViewCell子視圖控件也會更改背景顏色。 如何讓孩子查看背景不變?UITableViewCell選定背景效果
回答
這可能是適合你:
[cell setSelectionStyle:UITableViewCellSelectionStyleNone];
我需要的效果是:當一個單元格被按下時,背景顏色是灰色的。鬆開手指單元格恢復到原始效果。 – ChildrenGreens
使用此代碼,
let cell:UITableViewCell = UITableViewCell(style:UITableViewCellStyle.Default, reuseIdentifier:"cell")
cell.selectionStyle = UITableViewCellSelectionStyle.None
return cell
希望它有幫助
我需要的效果是:當一個單元格被按下時,背景顏色是灰色的。鬆開手指單元格回到原始效果 – ChildrenGreens
您需要使用效果,** didSelectRowAtIndexPath:**方法 'tableView.deselectRowAtIndexPath(indexPath,動畫:真)' –
這樣我知道,但子視圖設置單元格的背景顏色,並提出了上述問題。 – ChildrenGreens
- 1. ios6,UITableViewCell背景
- 2. 背景固定與滾動效果?
- 3. 固定的背景滾動效果
- 4. 定時jQuery的背景視差效果
- 5. UITableViewCell背景(圖案)
- 6. Xcode 4.2 UITableViewCell背景
- 7. UITableViewCell背景拉伸
- 8. UITableViewCell背景圖片
- 9. UITableViewCell背景顏色
- 10. WP7背景模糊效果
- 11. CSS背景滾動效果
- 12. jquery背景顏色效果
- 13. 動畫背景效果
- 14. JQuery背景過渡效果
- 15. CSS分層背景效果
- 16. 的UITableViewCell選擇背景圖上的iOS
- 17. 所選的UITableViewCell更改Scroll背景
- 18. UITableViewCell背景圖片和選擇問題
- 19. 更改UITableViewCell背景顏色時選擇
- 20. tvOS自定義UITableViewCell與UIView在選定狀態丟失背景
- 21. 自定義UITableViewCell無法設置選定的背景色
- 22. 選擇UITableViewCell時禁用選擇效果
- 23. 自定義UITableViewCell背景顏色
- 24. uitableviewcell自定義背景問題
- 25. 設置UITableViewCell的自定義背景PNG
- 26. UITableViewCell自定義 - 更改背景
- 27. 如何在UITableView中設置UITableViewCell的選定背景顏色
- 28. 具有半透明選定背景的UITableViewCell
- 29. 在分組的UITableView中爲選定的UITableViewCell設置背景
- 30. 自定義UITableViewCell背景在選擇後變爲透明
這個問題類似http://stackoverflow.com/questions/26895370/swift-uitableviewcell-selected-background-color-on-multiple-selection?rq = 1 – muneeb
我看你提供的網站,效果不是我想要的。但是還是要感謝你。 – ChildrenGreens