UIButton: Add shortcut to button label property adjustsFontForContentSizeCategory.

This commit is contained in:
SBiOSoftWhare 2021-06-18 19:26:55 +02:00
parent c7bf8a79ce
commit 4cdca960b3

View file

@ -40,4 +40,15 @@ extension UIButton {
let image = UIImage.vc_image(from: color)
self.setBackgroundImage(image, for: state)
}
/// Shortcut to button label property `adjustsFontForContentSizeCategory`
@IBInspectable
var vc_adjustsFontForContentSizeCategory: Bool {
get {
return self.titleLabel?.adjustsFontForContentSizeCategory ?? false
}
set {
self.titleLabel?.adjustsFontForContentSizeCategory = newValue
}
}
}