美文网首页
iOS开发cell自定义高亮和选中背景颜色

iOS开发cell自定义高亮和选中背景颜色

作者: 小刘_假装是个程序员 | 来源:发表于2018-09-05 22:43 被阅读0次

    //重写高亮
    override func setHighlighted(highlighted: Bool, animated: Bool) {
    // super.setHighlighted(highlighted, animated: animated)
    if highlighted {
    self.backgroundColor = UIColor(white: 0, alpha: 0.45)
    }else {
    self.backgroundColor = UIColor(white: 0, alpha: 0.25)
    }
    }
    //重写选中
    override func setSelected(selected: Bool, animated: Bool) {
    // super.setSelected(selected, animated: animated)
    if selected {
    self.backgroundColor = UIColor(white: 0, alpha: 0.45)
    }else {
    self.backgroundColor = UIColor(white: 0, alpha: 0.25)
    }
    }

    相关文章

      网友评论

          本文标题:iOS开发cell自定义高亮和选中背景颜色

          本文链接:https://www.haomeiwen.com/subject/qtozwftx.html