|
@@ -58,7 +58,7 @@ public class PQStuckPointMaterialController: PQBaseViewController {
|
|
|
choseLocalAllBtn.setTitleColor(UIColor.hexColor(hexadecimal: "#999999"), for: .normal)
|
|
|
choseLocalAllBtn.setTitleColor(PQBFConfig.shared.styleTitleColor, for: .selected)
|
|
|
choseLocalAllBtn.setTitle("全部", for: .normal)
|
|
|
- choseLocalAllBtn.titleLabel?.font = UIFont.systemFont(ofSize: 17)
|
|
|
+ choseLocalAllBtn.titleLabel?.font = UIFont.systemFont(ofSize: 17,weight: .medium)
|
|
|
choseLocalAllBtn.addCorner(corner: 6)
|
|
|
choseLocalAllBtn.tag = 10
|
|
|
choseLocalAllBtn.addTarget(self, action: #selector(btnClick(sender:)), for: .touchUpInside)
|
|
@@ -70,7 +70,7 @@ public class PQStuckPointMaterialController: PQBaseViewController {
|
|
|
choseLocalVideoBtn.setTitleColor(UIColor.hexColor(hexadecimal: "#999999"), for: .normal)
|
|
|
choseLocalVideoBtn.setTitleColor(PQBFConfig.shared.styleTitleColor, for: .selected)
|
|
|
choseLocalVideoBtn.setTitle("视频", for: .normal)
|
|
|
- choseLocalVideoBtn.titleLabel?.font = UIFont.systemFont(ofSize: 17)
|
|
|
+ choseLocalVideoBtn.titleLabel?.font = UIFont.systemFont(ofSize: 17,weight: .medium)
|
|
|
choseLocalVideoBtn.addCorner(corner: 6)
|
|
|
choseLocalVideoBtn.tag = 11
|
|
|
choseLocalVideoBtn.isSelected = true
|
|
@@ -83,7 +83,7 @@ public class PQStuckPointMaterialController: PQBaseViewController {
|
|
|
choseLocalImageBtn.setTitleColor(UIColor.hexColor(hexadecimal: "#999999"), for: .normal)
|
|
|
choseLocalImageBtn.setTitleColor(PQBFConfig.shared.styleTitleColor, for: .selected)
|
|
|
choseLocalImageBtn.setTitle("照片", for: .normal)
|
|
|
- choseLocalImageBtn.titleLabel?.font = UIFont.systemFont(ofSize: 17)
|
|
|
+ choseLocalImageBtn.titleLabel?.font = UIFont.systemFont(ofSize: 17,weight: .medium)
|
|
|
choseLocalImageBtn.addCorner(corner: 6)
|
|
|
choseLocalImageBtn.tag = 12
|
|
|
choseLocalImageBtn.addTarget(self, action: #selector(btnClick(sender:)), for: .touchUpInside)
|
|
@@ -91,8 +91,8 @@ public class PQStuckPointMaterialController: PQBaseViewController {
|
|
|
}()
|
|
|
|
|
|
lazy var choseLineView: UIView = {
|
|
|
- let choseLineView = UIView(frame: CGRect(x: 0, y: 0, width: 25, height: 2))
|
|
|
- choseLineView.frame.origin.y = (navHeadImageView?.frame.maxY ?? 0) - 5
|
|
|
+ let choseLineView = UIView(frame: CGRect(x: 0, y: 0, width: 25, height: 3))
|
|
|
+ choseLineView.frame.origin.y = (navHeadImageView?.frame.maxY ?? 0) - 6
|
|
|
choseLineView.center.x = choseLocalVideoBtn.center.x
|
|
|
choseLineView.backgroundColor = UIColor.hexColor(hexadecimal: PQBFConfig.shared.styleColor.rawValue)
|
|
|
return choseLineView
|