本文介绍了如何更改UITableViewCell的蓝色突出显示颜色?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想知道如何更改 UITableViewCell
的蓝色突出显示/选择颜色,任何想法?
I'm wondering how to change the blue highlight/selection color of a UITableViewCell
, any ideas?
推荐答案
您可以通过多种方式更改突出显示颜色。
You can change the highlight color in several ways.
-
更改selectionStyle属性你的细胞。如果您将其更改为
UITableViewCellSelectionStyleGray
,它将为灰色。
更改 selectedBackgroundView
属性。实际上创建蓝色渐变的是一个视图。您可以创建视图并绘制您喜欢的内容,并将视图用作表格视图单元格的背景。
Change the selectedBackgroundView
property. Actually what creates the blue gradient is a view. You can create a view and draw what ever you like, and use the view as the background of your table view cells.
这篇关于如何更改UITableViewCell的蓝色突出显示颜色?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!