在iPhone程序中点击按钮更改UIImageView的图像

时间:2010-07-28 05:44:04

标签: iphone uibutton

我想在单击按钮时更改图像查看器中的图像。 我知道这个问题基本但是,我需要一个答案。 请回复

1 个答案:

答案 0 :(得分:1)

首先,在MyViewController.m中实现以下方法(同样,将方法签名添加到MyViewController.h文件中):

MyViewController.m:

- (IBAction)handleButtonClick:(id)sender {
    imageView.image = [UIImage imageNamed:@"blah.png"];
}

MyViewController.h:

{
    IBOutlet UIImageView *imageView;
}

- (IBAction)handleButtonClick:(id)sender;

然后将handleButtonClick操作附加到按钮的内部触摸事件和imageView插座到“界面”构建器中的图像视图。

瞧。