我UIImageView
在 IB 中创建了一个并将其连接到IBOutlet
:
@property (nonatomic, retain) IBOutlet UIImageView *alertImage;
但是,它UIImageView
根本不会对我的代码做出反应。我尝试设置插座,然后更改要测试的属性:
alertImage = [[UIImageView alloc] init];
alertImage.hidden = YES;
但图像并没有消失。我究竟做错了什么?