Relative Content

Tag Archive for uikituibutton

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