Home > Software design >  Center title on the button image
Center title on the button image

Time:11-18

I want to change button image and title programmatically. When design button image and title (plain) on storyboard it is centered no problem. But when ı use;

  startButton.setImage(UIImage(named: "StartButton"), for: .normal)
  startButton.setAttributedTitle(NSAttributedString(string: "START"), for: .normal)

to change button image and title programmatically. Button title not centered on image. It looks like it's on the left of the image.

CodePudding user response:

This may helps you. use setBackgroundImage instead of setImage

startButton.setBackgroundImage(UIImage(named: "StartButton"), for: .normal)

hope this solution will solve your problem

  • Related