Commit aabc7967 authored by lujunye's avatar lujunye

地址选择按钮字号放大

parent 01b576d0
...@@ -297,7 +297,7 @@ class XinZengDiZhiViewController: BaseViewController,UITableViewDelegate,UITable ...@@ -297,7 +297,7 @@ class XinZengDiZhiViewController: BaseViewController,UITableViewDelegate,UITable
let rightBtn = UIButton() let rightBtn = UIButton()
rightBtn.setTitle("确定", for: .normal) rightBtn.setTitle("确定", for: .normal)
rightBtn.setTitleColor(UIColor(named: "蓝色字体颜色"), for: .normal) rightBtn.setTitleColor(UIColor(named: "蓝色字体颜色"), for: .normal)
rightBtn.titleLabel?.font = UIFont.systemFont(ofSize: 13) rightBtn.titleLabel?.font = UIFont.systemFont(ofSize: 15)
rightBtn.addTarget(self, action: #selector(adrSelectFinish(sender:)), for: .touchUpInside) rightBtn.addTarget(self, action: #selector(adrSelectFinish(sender:)), for: .touchUpInside)
btmView?.addSubview(rightBtn) btmView?.addSubview(rightBtn)
rightBtn.snp.makeConstraints { (make) in rightBtn.snp.makeConstraints { (make) in
...@@ -310,7 +310,7 @@ class XinZengDiZhiViewController: BaseViewController,UITableViewDelegate,UITable ...@@ -310,7 +310,7 @@ class XinZengDiZhiViewController: BaseViewController,UITableViewDelegate,UITable
let leftBtn = UIButton() let leftBtn = UIButton()
leftBtn.setTitle("取消", for: .normal) leftBtn.setTitle("取消", for: .normal)
leftBtn.setTitleColor(UIColor(named: "多选按钮字体颜色"), for: .normal) leftBtn.setTitleColor(UIColor(named: "多选按钮字体颜色"), for: .normal)
leftBtn.titleLabel?.font = UIFont.systemFont(ofSize: 13) leftBtn.titleLabel?.font = UIFont.systemFont(ofSize: 15)
leftBtn.addTarget(self, action: #selector(closeAction(sender:)), for: .touchUpInside) leftBtn.addTarget(self, action: #selector(closeAction(sender:)), for: .touchUpInside)
btmView?.addSubview(leftBtn) btmView?.addSubview(leftBtn)
leftBtn.snp.makeConstraints { (make) in leftBtn.snp.makeConstraints { (make) in
......
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