UIButton/Configuration titleAlignment = .leading and imagePlacement = .trailing are not respected
var configuration = UIButton.Configuration.bordered() configuration.image = ImageProvider.icon.history configuration.imagePlacement = .trailing historyButton.configuration = configuration configuration.titleAlignment = .leading historyButton.setTitle(String(localized: “History”), for: .normal) let image = ImageProvider.icon.history historyButton.setImage(image, for: .normal) How could I get the title tethered to the leading edge of the button and image to the trailing edge? Thanks! uikit uibutton
UIButton.ConfigurationUpdateHandler slow in UITableView cell [UIButton.Configuration, UIButtonConfiguration]
If you run the following UIKit app and tap on the button, you can see that it only updates its color if you hold on it for a bit, instead of immediately (as happens in the second app) (iOS 17.5, iPhone 15 Pro simulator, Xcode 15.4).