iOS使用Button的图像背景

时间:2013-02-21 10:51:39

标签: ios5

我有透明部分的图像背景,我没有使用我的按钮 透明部分,如果可能,使用界面构建器

enter image description here

2 个答案:

答案 0 :(得分:1)

btnImage = [UIImage imageNamed:@"image.png"];
[btn setBackgroundImage:btnImage forState:UIControlStateNormal];
[btn setTitle:@"Title" forState:UIControlStateNormal];

或者您可以通过将xib更改为custom类型来直接设置背景图像。

答案 1 :(得分:1)

通过它的声音你可能使用UIButtonTypeRoundedRect样式,但是UIButtonTypeCustom可能更合适。您可以在Interface Builder的检查器窗口中更改此设置。 我仍然引用此链接http://www.raywenderlich.com/22324/beginning-uicollectionview-in-ios-6-part-12