2011-04-07 36 views

回答

14

可以使用contentMode屬性:

button.imageView.contentMode = UIViewContentModeCenter; 
+3

之前,請從UIButton的文本,UIButton的顯示在右對齊圖像 – 2015-02-19 22:28:29

2

有時你可能有錯誤的內容一致。確保它們都與中心:

button.contentHorizontalAlignment = UIControlContentHorizontalAlignmentCenter; 
button.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;