Adjust UIButton font size to width

Try this:

button.titleLabel?.numberOfLines = 1
button.titleLabel?.adjustsFontSizeToFitWidth = true
button.titleLabel?.lineBreakMode = .byClipping //<-- MAGIC LINE

I’m not sure why this does the trick but it does 🙂

Leave a Comment