func fill()

in QuizDemo/QuizDemo/Controllers/SourceEntityCell.swift [6:14]


    func fill(_ title: String) {
        label.text = title
        label.textColor = UIColor(red: 0.973, green: 0.6, blue: 0.114, alpha: 1)
        backgroundColor = UIColor(red: 0.455, green: 0.455, blue: 0.502, alpha: 0.18)
        let backView = UIView()
        backView.backgroundColor = UIColor(red: 1, green: 0.6, blue: 0, alpha: 1)
        selectedBackgroundView = backView
        applyMaskLayer()
    }