在构建应用程序方面,我是新手。有什么方法可以在按下按钮时显示图像?我已经有按钮在按下时在标签上显示文本。这是我的按钮代码:
- (IBAction)ClickMe:(id)sender
{
_resultLabel.text = self.tempText.text;
}
在构建应用程序方面,我是新手。有什么方法可以在按下按钮时显示图像?我已经有按钮在按下时在标签上显示文本。这是我的按钮代码:
- (IBAction)ClickMe:(id)sender
{
_resultLabel.text = self.tempText.text;
}
只需将图像加载到 uiimageview 中。在开始时将其设置为隐藏。当您按下按钮时,取消隐藏,如果再次按下隐藏(切换)
首先创建一个 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];
}
尝试这个
imageView.hidden = NO;