loginBtn=UIButton.init(type: .custom)
loginBtn?.setTitle("登录", for: .normal)
//下面这种写法就显示不出字,要用上面的方法才行
loginBtn?.titleLabel?.text="登录"
loginBtn?.titleLabel?.font = UIFont.systemFont(ofSize: 20)
loginBtn?.titleLabel?.textColor = .white
loginBtn?.layer.borderColor= UIColor.white.cgColor
loginBtn?.layer.borderWidth = 1
loginBtn?.layer.masksToBounds = true
loginBtn?.layer.cornerRadius = 4
网友评论