fix
杨锴
2025-05-06 fdb1d18a0b4b941b986d55f66c589e29836494eb
DolphinEnglishLearnStudent/Other/UIView/VoiceHandleView.swift
@@ -10,19 +10,19 @@
class VoiceHandleView: UIView {
            private lazy var img_hint:UIImageView = {
                        let img = UIImageView(image: UIImage(named: "icon_play_1"))
                        let img = UIImageView(image: UIImage(named: "icon_play_1")?.themeGreen)
                        return img
            }()
            private lazy var img_hint_playing:UIImageView = {
                        let img = UIImageView(image: UIImage(named: "icon_playing"))
        let img = UIImageView(image: UIImage(named: "icon_playing")?.themeGreen)
                        img.isHidden = true
                        return img
            }()
            private lazy var btn_play:UIButton = {
                        let btn = UIButton(type: .custom)
                        btn.setImage(UIImage(named: "icon_play"), for: .normal)
        btn.setImage(UIImage(named: "icon_play")?.themeGreen, for: .normal)
                        return btn
            }()
@@ -42,7 +42,8 @@
            }
            private func setUI(){
                        backgroundColor = UIColor(hexString: "#41A2EB")
//                        backgroundColor = UIColor(hexString: "#41A2EB")
        backgroundColor = UIColor.white
                        jq_cornerRadius = 8
                        addSubview(img_hint_playing)
                        addSubview(img_hint)