如何将已选择为没有颜色的tableview单元格设为Vine App。
我已经尝试了但是颜色很清楚,但是当它被选中时,细胞会变白
Vine示例没有背景颜色变化 https://vid.me/tfkk
我的项目:即使将其设置为clearColor,也会更改单元格颜色 https://vid.me/awCq
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! DiscvoerTVC
let colorView = UIView()
colorView.backgroundColor = nil
UITableViewCell.appearance().selectedBackgroundView = colorView
if indexPath.row == 0 {
cell.DiscoverViewColor.backgroundColor = UIColor.grayColor()
cell.DiscoverViewLabel.text = "USMLE CK"
cell.backgroundColor = UIColor.grayColor()
cell.layer.cornerRadius = 20.0
cell.layer.masksToBounds = true
let colorView = UIView()
colorView.backgroundColor = nil
UITableViewCell.appearance().selectedBackgroundView = colorView
}
答案 0 :(得分:1)
你的意思是细胞的选择风格?如果是这样,请将其选择样式设置为无
for