美文网首页
swift button的基本属性设置与不显示title只显示边

swift button的基本属性设置与不显示title只显示边

作者: CocoaBird | 来源:发表于2018-04-11 14:42 被阅读21次

       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只显示边

      本文链接:https://www.haomeiwen.com/subject/swvczxtx.html