Commit abd4ce3a authored by David黄金龙's avatar David黄金龙

圆角3

圆角6

统一变量
parent 7b3255cf
...@@ -117,7 +117,7 @@ private extension YHStartPageViewController { ...@@ -117,7 +117,7 @@ private extension YHStartPageViewController {
agreeAlertView.cancelBlock = { agreeAlertView.cancelBlock = {
//点击了取消按钮 //点击了取消按钮
YHCommonAlertView.show("", "确认退出银河港生活App?", "退出", "继续使用",fullGuestureEnable: false) { YHCommonAlertView.show("", "确认退出银河港生活?", "退出", "继续使用",fullGuestureEnable: false) {
//退出 //退出
exit(0) exit(0)
} callBack: { } callBack: {
......
...@@ -58,7 +58,7 @@ class YHAgreementAlertView: UIView { ...@@ -58,7 +58,7 @@ class YHAgreementAlertView: UIView {
label.textColor = UIColor.mainTextColor label.textColor = UIColor.mainTextColor
label.font = UIFont.PFSC_M(ofSize: 17) label.font = UIFont.PFSC_M(ofSize: 17)
label.numberOfLines = 0 label.numberOfLines = 0
label.text = "欢迎使用银河港生活App" label.text = "欢迎使用银河港生活"
return label return label
}() }()
...@@ -143,9 +143,9 @@ class YHAgreementAlertView: UIView { ...@@ -143,9 +143,9 @@ class YHAgreementAlertView: UIView {
let a: ASAttributedString = .init("感谢您信任并使用银河港生活App,我们将通过", .font(UIFont.PFSC_R(ofSize: 16)),.foreground(UIColor.mainTextColor)) let a: ASAttributedString = .init("感谢您信任并使用银河港生活,我们将通过", .font(UIFont.PFSC_R(ofSize: 16)),.foreground(UIColor.mainTextColor))
let aa: ASAttributedString = .init("《银河港生活App隐私协议》", .font(UIFont.PFSC_M(ofSize: 16)),.foreground(UIColor.brandMainColor), .action { let aa: ASAttributedString = .init("《银河港生活隐私协议》", .font(UIFont.PFSC_M(ofSize: 16)),.foreground(UIColor.brandMainColor), .action {
if let block = self.urlBlock { if let block = self.urlBlock {
block(YHBaseUrlManager.shared.curPrivacyAgreementUrl()) block(YHBaseUrlManager.shared.curPrivacyAgreementUrl())
} }
...@@ -155,7 +155,7 @@ class YHAgreementAlertView: UIView { ...@@ -155,7 +155,7 @@ class YHAgreementAlertView: UIView {
let and: ASAttributedString = .init("和", .font(UIFont.PFSC_R(ofSize: 16)),.foreground(UIColor.mainTextColor)) let and: ASAttributedString = .init("和", .font(UIFont.PFSC_R(ofSize: 16)),.foreground(UIColor.mainTextColor))
let aab: ASAttributedString = .init("《银河港生活App用户条款》", .font(UIFont.PFSC_M(ofSize: 16)),.foreground(UIColor.brandMainColor), .action { let aab: ASAttributedString = .init("《银河港生活用户条款》", .font(UIFont.PFSC_M(ofSize: 16)),.foreground(UIColor.brandMainColor), .action {
if let block = self.urlBlock { if let block = self.urlBlock {
block(YHBaseUrlManager.shared.curUserItemsUrl()) block(YHBaseUrlManager.shared.curUserItemsUrl())
} }
......
...@@ -81,7 +81,7 @@ class YHCertificateUploadContentListVC: YHBaseViewController { ...@@ -81,7 +81,7 @@ class YHCertificateUploadContentListVC: YHBaseViewController {
btn.titleLabel?.font = UIFont.PFSC_M(ofSize: 16) btn.titleLabel?.font = UIFont.PFSC_M(ofSize: 16)
btn.setTitleColor(.white, for: .normal) btn.setTitleColor(.white, for: .normal)
btn.backgroundColor = UIColor.brandMainColor btn.backgroundColor = UIColor.brandMainColor
btn.layer.cornerRadius = 3.0 btn.layer.cornerRadius = kCornerRadius3
btn.addTarget(self, action: #selector(didClickUploadBtn), for: .touchUpInside) btn.addTarget(self, action: #selector(didClickUploadBtn), for: .touchUpInside)
return btn return btn
}() }()
...@@ -390,7 +390,7 @@ extension YHCertificateUploadContentListVC: UITableViewDelegate, UITableViewData ...@@ -390,7 +390,7 @@ extension YHCertificateUploadContentListVC: UITableViewDelegate, UITableViewData
let statusLabel = UILabel() let statusLabel = UILabel()
statusLabel.textAlignment = .center statusLabel.textAlignment = .center
statusLabel.font = UIFont.PFSC_M(ofSize:10) statusLabel.font = UIFont.PFSC_M(ofSize:10)
statusLabel.layer.cornerRadius = 3.0 statusLabel.layer.cornerRadius = kCornerRadius3
statusLabel.clipsToBounds = true statusLabel.clipsToBounds = true
view.addSubview(statusLabel) view.addSubview(statusLabel)
......
...@@ -147,7 +147,7 @@ class YHCertificateFilterView: UIView { ...@@ -147,7 +147,7 @@ class YHCertificateFilterView: UIView {
btn.titleLabel?.font = UIFont.PFSC_M(ofSize: 14) btn.titleLabel?.font = UIFont.PFSC_M(ofSize: 14)
btn.setTitleColor(.white, for: .normal) btn.setTitleColor(.white, for: .normal)
btn.backgroundColor = UIColor.brandMainColor btn.backgroundColor = UIColor.brandMainColor
btn.layer.cornerRadius = 3.0 btn.layer.cornerRadius = kCornerRadius3
btn.addTarget(self, action: #selector(didClickConfirmBtn), for: .touchUpInside) btn.addTarget(self, action: #selector(didClickConfirmBtn), for: .touchUpInside)
return btn return btn
}() }()
...@@ -158,7 +158,7 @@ class YHCertificateFilterView: UIView { ...@@ -158,7 +158,7 @@ class YHCertificateFilterView: UIView {
btn.titleLabel?.font = UIFont.PFSC_M(ofSize: 14) btn.titleLabel?.font = UIFont.PFSC_M(ofSize: 14)
btn.setTitleColor(UIColor.mainTextColor, for: .normal) btn.setTitleColor(UIColor.mainTextColor, for: .normal)
btn.backgroundColor = UIColor(hexString:"#F8F9FB") btn.backgroundColor = UIColor(hexString:"#F8F9FB")
btn.layer.cornerRadius = 3.0 btn.layer.cornerRadius = kCornerRadius3
btn.addTarget(self, action: #selector(didClickResetBtn), for: .touchUpInside) btn.addTarget(self, action: #selector(didClickResetBtn), for: .touchUpInside)
return btn return btn
}() }()
......
...@@ -115,7 +115,7 @@ class YHCertificateInfoCell: UITableViewCell { ...@@ -115,7 +115,7 @@ class YHCertificateInfoCell: UITableViewCell {
contentView.backgroundColor = UIColor(hexString:"#F8F8F8") contentView.backgroundColor = UIColor(hexString:"#F8F8F8")
whiteView = UIView() whiteView = UIView()
whiteView.layer.cornerRadius = 6.0 whiteView.layer.cornerRadius = kCornerRadius6
whiteView.clipsToBounds = true whiteView.clipsToBounds = true
whiteView.backgroundColor = .white whiteView.backgroundColor = .white
contentView.addSubview(whiteView) contentView.addSubview(whiteView)
......
...@@ -41,7 +41,7 @@ class YHCertificateSampleTemplateView: UIView { ...@@ -41,7 +41,7 @@ class YHCertificateSampleTemplateView: UIView {
func createUI() { func createUI() {
self.backgroundColor = .contentBkgColor self.backgroundColor = .contentBkgColor
self.layer.cornerRadius = 6.0 self.layer.cornerRadius = kCornerRadius6
self.clipsToBounds = true self.clipsToBounds = true
self.addSubview(iconImgV) self.addSubview(iconImgV)
......
...@@ -117,7 +117,7 @@ class YHCertificateTemplateSheetView: UIView { ...@@ -117,7 +117,7 @@ class YHCertificateTemplateSheetView: UIView {
btn.titleLabel?.font = UIFont.PFSC_M(ofSize: 16) btn.titleLabel?.font = UIFont.PFSC_M(ofSize: 16)
btn.setTitleColor(.white, for: .normal) btn.setTitleColor(.white, for: .normal)
btn.backgroundColor = UIColor.brandMainColor btn.backgroundColor = UIColor.brandMainColor
btn.layer.cornerRadius = 3.0 btn.layer.cornerRadius = kCornerRadius3
btn.addTarget(self, action: #selector(didClickKnownBtn), for: .touchUpInside) btn.addTarget(self, action: #selector(didClickKnownBtn), for: .touchUpInside)
return btn return btn
}() }()
......
...@@ -26,7 +26,7 @@ class YHCertificateUploadFailTipsView: UIView { ...@@ -26,7 +26,7 @@ class YHCertificateUploadFailTipsView: UIView {
lazy var whiteContentView: UIView = { lazy var whiteContentView: UIView = {
let view = UIView() let view = UIView()
view.backgroundColor = .white view.backgroundColor = .white
view.layer.cornerRadius = 6.0 view.layer.cornerRadius = kCornerRadius6
return view return view
}() }()
...@@ -60,7 +60,7 @@ class YHCertificateUploadFailTipsView: UIView { ...@@ -60,7 +60,7 @@ class YHCertificateUploadFailTipsView: UIView {
btn.titleLabel?.font = UIFont.PFSC_R(ofSize: 14) btn.titleLabel?.font = UIFont.PFSC_R(ofSize: 14)
btn.setTitleColor(.white, for: .normal) btn.setTitleColor(.white, for: .normal)
btn.backgroundColor = UIColor.brandMainColor btn.backgroundColor = UIColor.brandMainColor
btn.layer.cornerRadius = 3.0 btn.layer.cornerRadius = kCornerRadius3
btn.addTarget(self, action: #selector(dismiss), for: .touchUpInside) btn.addTarget(self, action: #selector(dismiss), for: .touchUpInside)
return btn return btn
}() }()
......
...@@ -61,7 +61,7 @@ class YHFileRenameInputView: UIView { ...@@ -61,7 +61,7 @@ class YHFileRenameInputView: UIView {
lazy var inputContentView: UIView = { lazy var inputContentView: UIView = {
let view = UIView() let view = UIView()
view.backgroundColor = .contentBkgColor view.backgroundColor = .contentBkgColor
view.layer.cornerRadius = 6.0 view.layer.cornerRadius = kCornerRadius6
view.clipsToBounds = true view.clipsToBounds = true
return view return view
}() }()
...@@ -85,7 +85,7 @@ class YHFileRenameInputView: UIView { ...@@ -85,7 +85,7 @@ class YHFileRenameInputView: UIView {
btn.titleLabel?.font = UIFont.PFSC_M(ofSize: 14) btn.titleLabel?.font = UIFont.PFSC_M(ofSize: 14)
btn.setTitleColor(UIColor.mainTextColor, for: .normal) btn.setTitleColor(UIColor.mainTextColor, for: .normal)
btn.backgroundColor = .contentBkgColor btn.backgroundColor = .contentBkgColor
btn.layer.cornerRadius = 3.0 btn.layer.cornerRadius = kCornerRadius3
btn.addTarget(self, action: #selector(didClickCancelBtn), for: .touchUpInside) btn.addTarget(self, action: #selector(didClickCancelBtn), for: .touchUpInside)
return btn return btn
}() }()
...@@ -96,7 +96,7 @@ class YHFileRenameInputView: UIView { ...@@ -96,7 +96,7 @@ class YHFileRenameInputView: UIView {
btn.titleLabel?.font = UIFont.PFSC_M(ofSize: 14) btn.titleLabel?.font = UIFont.PFSC_M(ofSize: 14)
btn.setTitleColor(.white, for: .normal) btn.setTitleColor(.white, for: .normal)
btn.backgroundColor = UIColor.brandMainColor btn.backgroundColor = UIColor.brandMainColor
btn.layer.cornerRadius = 3.0 btn.layer.cornerRadius = kCornerRadius3
btn.addTarget(self, action: #selector(didClickConfirmBtn), for: .touchUpInside) btn.addTarget(self, action: #selector(didClickConfirmBtn), for: .touchUpInside)
return btn return btn
}() }()
......
...@@ -54,7 +54,7 @@ class YHEmailInputAlertView: UIView { ...@@ -54,7 +54,7 @@ class YHEmailInputAlertView: UIView {
lazy var inputContentView: UIView = { lazy var inputContentView: UIView = {
let view = UIView() let view = UIView()
view.backgroundColor = .contentBkgColor view.backgroundColor = .contentBkgColor
view.layer.cornerRadius = 6.0 view.layer.cornerRadius = kCornerRadius6
view.clipsToBounds = true view.clipsToBounds = true
return view return view
}() }()
...@@ -77,7 +77,7 @@ class YHEmailInputAlertView: UIView { ...@@ -77,7 +77,7 @@ class YHEmailInputAlertView: UIView {
btn.titleLabel?.font = UIFont.PFSC_M(ofSize: 14) btn.titleLabel?.font = UIFont.PFSC_M(ofSize: 14)
btn.setTitleColor(UIColor.mainTextColor, for: .normal) btn.setTitleColor(UIColor.mainTextColor, for: .normal)
btn.backgroundColor = .contentBkgColor btn.backgroundColor = .contentBkgColor
btn.layer.cornerRadius = 3.0 btn.layer.cornerRadius = kCornerRadius3
btn.addTarget(self, action: #selector(didClickCancelBtn), for: .touchUpInside) btn.addTarget(self, action: #selector(didClickCancelBtn), for: .touchUpInside)
return btn return btn
}() }()
...@@ -88,7 +88,7 @@ class YHEmailInputAlertView: UIView { ...@@ -88,7 +88,7 @@ class YHEmailInputAlertView: UIView {
btn.titleLabel?.font = UIFont.PFSC_M(ofSize: 14) btn.titleLabel?.font = UIFont.PFSC_M(ofSize: 14)
btn.setTitleColor(.white, for: .normal) btn.setTitleColor(.white, for: .normal)
btn.backgroundColor = UIColor.brandMainColor btn.backgroundColor = UIColor.brandMainColor
btn.layer.cornerRadius = 3.0 btn.layer.cornerRadius = kCornerRadius3
btn.addTarget(self, action: #selector(didClickConfirmBtn), for: .touchUpInside) btn.addTarget(self, action: #selector(didClickConfirmBtn), for: .touchUpInside)
return btn return btn
}() }()
......
...@@ -55,7 +55,7 @@ class YHFamilyMemberInfoListVC: YHBaseViewController { ...@@ -55,7 +55,7 @@ class YHFamilyMemberInfoListVC: YHBaseViewController {
btn.titleLabel?.font = UIFont.PFSC_R(ofSize: 14) btn.titleLabel?.font = UIFont.PFSC_R(ofSize: 14)
btn.setTitleColor(.white, for: .normal) btn.setTitleColor(.white, for: .normal)
btn.backgroundColor = UIColor.brandMainColor btn.backgroundColor = UIColor.brandMainColor
btn.layer.cornerRadius = 3.0 btn.layer.cornerRadius = kCornerRadius3
btn.addTarget(self, action: #selector(didClickSubmitBtn), for: .touchUpInside) btn.addTarget(self, action: #selector(didClickSubmitBtn), for: .touchUpInside)
return btn return btn
}() }()
......
...@@ -79,7 +79,7 @@ class YHSaveAndSubmitView: UIView { ...@@ -79,7 +79,7 @@ class YHSaveAndSubmitView: UIView {
btn.titleLabel?.font = UIFont.PFSC_R(ofSize: 14) btn.titleLabel?.font = UIFont.PFSC_R(ofSize: 14)
btn.setTitleColor(.white, for: .normal) btn.setTitleColor(.white, for: .normal)
btn.backgroundColor = UIColor.brandMainColor btn.backgroundColor = UIColor.brandMainColor
btn.layer.cornerRadius = 3.0 btn.layer.cornerRadius = kCornerRadius3
btn.addTarget(self, action: #selector(didClickSubmitBtn), for: .touchUpInside) btn.addTarget(self, action: #selector(didClickSubmitBtn), for: .touchUpInside)
return btn return btn
}() }()
...@@ -90,7 +90,7 @@ class YHSaveAndSubmitView: UIView { ...@@ -90,7 +90,7 @@ class YHSaveAndSubmitView: UIView {
btn.titleLabel?.font = UIFont.PFSC_R(ofSize: 14) btn.titleLabel?.font = UIFont.PFSC_R(ofSize: 14)
btn.setTitleColor(UIColor.mainTextColor, for: .normal) btn.setTitleColor(UIColor.mainTextColor, for: .normal)
btn.backgroundColor = UIColor(hexString:"#F8F9FB") btn.backgroundColor = UIColor(hexString:"#F8F9FB")
btn.layer.cornerRadius = 3.0 btn.layer.cornerRadius = kCornerRadius3
btn.addTarget(self, action: #selector(didClickSaveBtn), for: .touchUpInside) btn.addTarget(self, action: #selector(didClickSaveBtn), for: .touchUpInside)
return btn return btn
}() }()
......
...@@ -94,7 +94,7 @@ class YHDetailMessageCell: UITableViewCell { ...@@ -94,7 +94,7 @@ class YHDetailMessageCell: UITableViewCell {
whiteView = UIView() whiteView = UIView()
whiteView.backgroundColor = .white whiteView.backgroundColor = .white
whiteView.layer.cornerRadius = 6.0 whiteView.layer.cornerRadius = kCornerRadius6
whiteView.clipsToBounds = true whiteView.clipsToBounds = true
contentView.addSubview(whiteView) contentView.addSubview(whiteView)
......
...@@ -29,7 +29,7 @@ class YHMySettingViewController: YHBaseViewController, ConstraintRelatableTarget ...@@ -29,7 +29,7 @@ class YHMySettingViewController: YHBaseViewController, ConstraintRelatableTarget
btn.titleLabel?.font = UIFont.PFSC_M(ofSize: 16) btn.titleLabel?.font = UIFont.PFSC_M(ofSize: 16)
btn.setTitleColor(UIColor(hexString:"#313131"), for: .normal) btn.setTitleColor(UIColor(hexString:"#313131"), for: .normal)
btn.backgroundColor = .contentBkgColor btn.backgroundColor = .contentBkgColor
btn.layer.cornerRadius = 6.0 btn.layer.cornerRadius = kCornerRadius6
btn.addTarget(self, action: #selector(logout), for: .touchUpInside) btn.addTarget(self, action: #selector(logout), for: .touchUpInside)
return btn return btn
}() }()
......
...@@ -36,7 +36,7 @@ class YHMySettingCell: UITableViewCell { ...@@ -36,7 +36,7 @@ class YHMySettingCell: UITableViewCell {
private lazy var redPointView: UIView = { private lazy var redPointView: UIView = {
let view = UIView() let view = UIView()
view.layer.cornerRadius = 3.0 view.layer.cornerRadius = kCornerRadius3
view.backgroundColor = .failColor view.backgroundColor = .failColor
view.isHidden = true view.isHidden = true
return view return view
......
...@@ -145,7 +145,7 @@ class YHUserInfoHeaderView: UIView { ...@@ -145,7 +145,7 @@ class YHUserInfoHeaderView: UIView {
btn.titleLabel?.font = UIFont.PFSC_M(ofSize: 12) btn.titleLabel?.font = UIFont.PFSC_M(ofSize: 12)
btn.setTitleColor(.white, for: .normal) btn.setTitleColor(.white, for: .normal)
btn.backgroundColor = UIColor(hexString:"#242424") btn.backgroundColor = UIColor(hexString:"#242424")
btn.layer.cornerRadius = 6.0 btn.layer.cornerRadius = kCornerRadius6
btn.clipsToBounds = true btn.clipsToBounds = true
btn.addTarget(self, action: #selector(didClickEvaluateBtn(btn:)), for: .touchUpInside) btn.addTarget(self, action: #selector(didClickEvaluateBtn(btn:)), for: .touchUpInside)
return btn return btn
...@@ -166,7 +166,7 @@ class YHUserInfoHeaderView: UIView { ...@@ -166,7 +166,7 @@ class YHUserInfoHeaderView: UIView {
private lazy var settingRedPointView: UIView = { private lazy var settingRedPointView: UIView = {
let view = UIView() let view = UIView()
view.layer.cornerRadius = 3.0 view.layer.cornerRadius = kCornerRadius3
view.backgroundColor = .failColor view.backgroundColor = .failColor
view.isHidden = true view.isHidden = true
return view return view
......
...@@ -25,7 +25,7 @@ class YHAppVersionForceUpdateView: UIView { ...@@ -25,7 +25,7 @@ class YHAppVersionForceUpdateView: UIView {
lazy var whiteContentView: UIView = { lazy var whiteContentView: UIView = {
let view = UIView() let view = UIView()
view.backgroundColor = .white view.backgroundColor = .white
view.layer.cornerRadius = 6.0 view.layer.cornerRadius = kCornerRadius6
return view return view
}() }()
...@@ -60,7 +60,7 @@ class YHAppVersionForceUpdateView: UIView { ...@@ -60,7 +60,7 @@ class YHAppVersionForceUpdateView: UIView {
btn.titleLabel?.font = UIFont.PFSC_R(ofSize: 14) btn.titleLabel?.font = UIFont.PFSC_R(ofSize: 14)
btn.setTitleColor(.white, for: .normal) btn.setTitleColor(.white, for: .normal)
btn.backgroundColor = UIColor.brandMainColor btn.backgroundColor = UIColor.brandMainColor
btn.layer.cornerRadius = 3.0 btn.layer.cornerRadius = kCornerRadius3
btn.addTarget(self, action: #selector(didClickUpdateBtn), for: .touchUpInside) btn.addTarget(self, action: #selector(didClickUpdateBtn), for: .touchUpInside)
return btn return btn
}() }()
...@@ -73,7 +73,7 @@ class YHAppVersionForceUpdateView: UIView { ...@@ -73,7 +73,7 @@ class YHAppVersionForceUpdateView: UIView {
btn.layer.borderWidth = 1.0 btn.layer.borderWidth = 1.0
btn.layer.borderColor = UIColor.brandMainColor.cgColor btn.layer.borderColor = UIColor.brandMainColor.cgColor
btn.backgroundColor = .white btn.backgroundColor = .white
btn.layer.cornerRadius = 3.0 btn.layer.cornerRadius = kCornerRadius3
btn.addTarget(self, action: #selector(didClickExitBtn), for: .touchUpInside) btn.addTarget(self, action: #selector(didClickExitBtn), for: .touchUpInside)
return btn return btn
}() }()
......
...@@ -75,7 +75,7 @@ class YHFindAppNewVersionView: UIView { ...@@ -75,7 +75,7 @@ class YHFindAppNewVersionView: UIView {
lazy var whiteContentView: UIView = { lazy var whiteContentView: UIView = {
let view = UIView() let view = UIView()
view.backgroundColor = .white view.backgroundColor = .white
view.layer.cornerRadius = 6.0 view.layer.cornerRadius = kCornerRadius6
return view return view
}() }()
...@@ -98,7 +98,7 @@ class YHFindAppNewVersionView: UIView { ...@@ -98,7 +98,7 @@ class YHFindAppNewVersionView: UIView {
label.textColor = UIColor.brandMainColor label.textColor = UIColor.brandMainColor
label.textAlignment = .center label.textAlignment = .center
label.font = UIFont.PFSC_R(ofSize:14) label.font = UIFont.PFSC_R(ofSize:14)
label.layer.cornerRadius = 3.0 label.layer.cornerRadius = kCornerRadius3
label.layer.borderWidth = 0.5 label.layer.borderWidth = 0.5
label.layer.borderColor = UIColor.init(hex: 0x0046B5, alpha: 0.5).cgColor label.layer.borderColor = UIColor.init(hex: 0x0046B5, alpha: 0.5).cgColor
return label return label
...@@ -130,7 +130,7 @@ class YHFindAppNewVersionView: UIView { ...@@ -130,7 +130,7 @@ class YHFindAppNewVersionView: UIView {
btn.titleLabel?.font = UIFont.PFSC_R(ofSize: 14) btn.titleLabel?.font = UIFont.PFSC_R(ofSize: 14)
btn.setTitleColor(.white, for: .normal) btn.setTitleColor(.white, for: .normal)
btn.backgroundColor = UIColor.brandMainColor btn.backgroundColor = UIColor.brandMainColor
btn.layer.cornerRadius = 3.0 btn.layer.cornerRadius = kCornerRadius3
btn.addTarget(self, action: #selector(didClickUpdateBtn), for: .touchUpInside) btn.addTarget(self, action: #selector(didClickUpdateBtn), for: .touchUpInside)
return btn return btn
}() }()
......
...@@ -29,6 +29,7 @@ public func printLog<T>(_ message: T, file: String = #file, method: String = #fu ...@@ -29,6 +29,7 @@ public func printLog<T>(_ message: T, file: String = #file, method: String = #fu
let kMargin : CGFloat = 16.0 let kMargin : CGFloat = 16.0
//圆角 //圆角
let kCornerRadius3 : CGFloat = 3.0
let kCornerRadius4 : CGFloat = 4.0 let kCornerRadius4 : CGFloat = 4.0
let kCornerRadius6 : CGFloat = 6.0 let kCornerRadius6 : CGFloat = 6.0
let kCornerRadius8 : CGFloat = 8.0 let kCornerRadius8 : CGFloat = 8.0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment