Ios swift – How to disable title color change when highlighted state for UIButton using UIButtonConfiguration is active?
This is how my UIButton is defined and initialized: lazy var addButton: UIButton = { let button = UIButton(radius: 32, title: "+", font: .poppinsRegular.withSize(40), backgroundColor: .purple) button.menu = UIMenu(title: "") button.showsMenuAsPrimaryAction = true return button }() extension UIButton { convenience…