Guest User

Untitled

a guest
Dec 17th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. func setButtonStyle(_ button: UIButton, subject: String) {
  2. button.backgroundColor = UIColor.lightGray
  3. button.setTitle(subject, for: .normal)
  4. button.setTitleColor(UIColor.white, for: .normal)
  5. button.layer.cornerRadius = 3
  6. button.titleLabel?.sizeToFit()
  7. button.sizeToFit()
  8. button.frame.size = CGSize(width: 5, height: 20)
  9. }
Add Comment
Please, Sign In to add comment