swift button的基本属性设置与不显示title只显示边框和背景色的原因

       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

你可能感兴趣的:(swift button的基本属性设置与不显示title只显示边框和背景色的原因)