-4

在构建应用程序方面,我是新手。有什么方法可以在按下按钮时显示图像?我已经有按钮在按下时在标签上显示文本。这是我的按钮代码:

- (IBAction)ClickMe:(id)sender 
{
    _resultLabel.text = self.tempText.text;
}
4

3 回答 3

0

只需将图像加载到 uiimageview 中。在开始时将其设置为隐藏。当您按下按钮时,取消隐藏,如果再次按下隐藏(切换)

于 2013-06-27T16:05:11.493 回答
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];
}
于 2013-06-27T16:09:01.967 回答
0

尝试这个

imageView.hidden = NO;
于 2013-06-27T16:09:44.860 回答