|
@@ -149,7 +149,9 @@ class BFVoiceSettingView: UIView {
|
|
|
super.init(frame: frame)
|
|
|
|
|
|
backgroundColor = .clear
|
|
|
- addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(okBtnAction)))
|
|
|
+ let v = UIView.init(frame: CGRect.init(x: 0, y: 0, width: cScreenWidth, height: cScreenHeigth))
|
|
|
+ addSubview(v)
|
|
|
+ v.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(okBtnAction)))
|
|
|
backView.backgroundColor = UIColor.hexColor(hexadecimal: "#121212")
|
|
|
|
|
|
addSubview(backView)
|