在构建应用程序时,我是新手。按下按钮时是否有任何方法可以显示图像?按下时,我已经有按钮在标签上显示文本。这是我的按钮代码:
- (IBAction)ClickMe:(id)sender
{
_resultLabel.text = self.tempText.text;
}
答案 0 :(得分:0)
只需将图片加载到uiimageview中即可。将其隐藏在开头。当您按下按钮时,取消隐藏,如果再次按下则隐藏(切换)
答案 1 :(得分:0)
首先创建一个imageView并为其分配图像。
@interface UIImageViewCustom : UIViewController {
UIImageView *imageView ;
}
- (void)viewDidLoad
{
[super viewDidLoad];
UIImage* image = [UIImage imageNamed:@"abc.jpeg"];
imageView = [[UIImageView alloc] initWithFrame:CGRectMake(40,40,200,100)];
imageView.backgroundColor = [UIColor blackColor];
imageView.clipsToBounds = YES;
imageView.image = image;
}
然后将其添加到按下按钮时查看。
- (IBAction)ClickMe:(id)sender
{
_resultLabel.text = self.tempText.text;
[self.view addSubView:imageView];
}
答案 2 :(得分:0)
试试这个
imageView.hidden = NO;