调整按钮内的图像大小

时间:2014-02-04 17:26:16

标签: ios objective-c image uibutton

我正在研究我的一个项目,我似乎无法扩展我添加到按钮的图像。我想知道如何调整我放在按钮内的图像大小?

This is within the image attribute and not the background image.

大卫

1 个答案:

答案 0 :(得分:1)

检查按钮的内容模式

UIButton *button=[UIButton buttonWithType:UIButtonTypeCustom];
[button setContentMode:UIViewContentModeScaleAspectFit];
相关问题