|
@@ -69,7 +69,7 @@ class BFSubtitleSettingView: UIView {
|
|
|
btn.tag = i
|
|
|
if i == 0 {
|
|
|
btn.isSelected = true
|
|
|
- btn.layer.borderColor = UIColor.hexColor(hexadecimal: "#28BE67").cgColor
|
|
|
+ btn.layer.borderColor = UIColor.hexColor(hexadecimal: "#389AFF").cgColor
|
|
|
btn.layer.borderWidth = 1.5
|
|
|
lastSelectStyleBtn = btn
|
|
|
|
|
@@ -97,13 +97,13 @@ class BFSubtitleSettingView: UIView {
|
|
|
}
|
|
|
for i in 0...2 {
|
|
|
let pointBtn = UIButton(type: .custom)
|
|
|
- pointBtn.setTitleColor(UIColor.hexColor(hexadecimal: "#28BE67"), for: .selected)
|
|
|
+ pointBtn.setTitleColor(UIColor.hexColor(hexadecimal: "#389AFF"), for: .selected)
|
|
|
pointBtn.setTitleColor(.white, for: .normal)
|
|
|
pointBtn.addTarget(self, action: #selector(pointSetting(sender:)), for: .touchUpInside)
|
|
|
pointBtn.backgroundColor = UIColor.hexColor(hexadecimal: "#1A1A1A")
|
|
|
if i == 0 {
|
|
|
pointBtn.isSelected = true
|
|
|
- pointBtn.layer.borderColor = UIColor.hexColor(hexadecimal: "#28BE67").cgColor
|
|
|
+ pointBtn.layer.borderColor = UIColor.hexColor(hexadecimal: "#389AFF").cgColor
|
|
|
pointBtn.layer.borderWidth = 1.5
|
|
|
lastSelectPointBtn = pointBtn
|
|
|
pointBtn.setTitle("下", for: .normal)
|
|
@@ -209,7 +209,7 @@ class BFSubtitleSettingView: UIView {
|
|
|
sender.isSelected = true
|
|
|
lastSelectStyleBtn = sender
|
|
|
|
|
|
- sender.layer.borderColor = UIColor.hexColor(hexadecimal: "#28BE67").cgColor
|
|
|
+ sender.layer.borderColor = UIColor.hexColor(hexadecimal: "#389AFF").cgColor
|
|
|
sender.layer.borderWidth = 1.5
|
|
|
|
|
|
subtitle.setting.subtitleStyle = sender.tag
|
|
@@ -233,7 +233,7 @@ class BFSubtitleSettingView: UIView {
|
|
|
sender.isSelected = true
|
|
|
lastSelectPointBtn = sender
|
|
|
|
|
|
- sender.layer.borderColor = UIColor.hexColor(hexadecimal: "#28BE67").cgColor
|
|
|
+ sender.layer.borderColor = UIColor.hexColor(hexadecimal: "#389AFF").cgColor
|
|
|
sender.layer.borderWidth = 1.5
|
|
|
|
|
|
subtitle.setting.subtitlePoint = sender.tag
|