How to center UIImage on a UIButton?

I want to know how to center a UIImage on a UIButton. I am using the setImage UIButton method to place a UIImage ..

+4
source share
3 answers

You can use the contentMode property:

button.imageView.contentMode = UIViewContentModeCenter; 
+14
source

Remove text from UIButton before setting content mode

+4
source

Sometimes you may have misaligned content. Make sure they are in the center with:

 button.contentHorizontalAlignment = UIControlContentHorizontalAlignmentCenter; button.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter; 
+2
source

Source: https://habr.com/ru/post/1347084/


All Articles