如何将UIImage集中到UIButton?

时间:2011-04-07 10:59:37

标签: uiimage uibutton

我想知道如何将UIImage集中到UIButton。我正在使用UIButton的setImage方法放置UIImage ..

3 个答案:

答案 0 :(得分:14)

您可以使用contentMode属性:

button.imageView.contentMode = UIViewContentModeCenter;

答案 1 :(得分:4)

在设置内容模式

之前从UIButton中删除文本

答案 2 :(得分:2)

有时您可能会错误地对齐内容。确保它们都位于中心位置:

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