Here is my UIButton
defined like this:
private var continueButton: AttributedButton = {
let button = AttributedButton()
button.backgroundColor = .systemGreen
button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 18)
button.titleEdgeInsets = UIEdgeInsets(top: 6, left: 20, bottom: 6, right: 20)
button.setTitle("game.continue".localized.uppercased(), for: .normal)
button.setTitleColor(.white, for: .normal)
button.cornerRadius = 10
return button
}()
and it looks like this:
Use contentEdgeInsets
property instead of titleEdgeInsets
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With