我想在我的 xcode 项目中添加一个图像按钮。我使用界面生成器添加了一个圆形矩形按钮。
在我的 .h 文件中:
@property (nonatomic, retain) IBOutlet UIButton *infobutton;
在我的 .m 文件中:
@synthesize infobutton;
-viewDidLoad{
infobutton = [[UIButton buttonWithType:UIButtonTypeCustom] retain];
UIImage* infobuttonImg =[UIImage imageNamed:@"info.png"];
[infobutton setImage:infobuttonImg forState:UIControlStateNormal];
[infobuttonImg release];
}
最后,我在界面构建器中添加了一个链接,将圆形矩形按钮链接到信息按钮。但是,当我运行模拟器时,我的界面上仍然有普通的圆形矩形按钮,而不是让按钮显示为我设置的图像。我想知道我的代码中是否遗漏了什么。