我的故事板中有两个视图控制器。
在第一个视图控制器中,有一个按钮-A,它有一个动作-A。当我在第一个视图控制器中按下按钮 A 时,它会在第二个视图控制器中显示 A 的图像。
我在 viewcontroller.h 文件中声明 action-A 并在 viewcontroller.m 文件中实现 actionA。然后我在第一个视图控制器的 First Responder 上连接 action-A 和 button-A。
当我测试这个应用程序时,我单击按钮-A,但它没有进入操作-A。
我在哪里犯了错误?我刚开始学习iOS,我不是专业人士。请帮帮我我该怎么办?
在 viewcontroller.h
@interface ViewController : UIViewController
{
IBOutlet UIPageControl *pagecontrol;
IBOutlet UIImageView *imageview1;
IBOutlet UIImageView *imageview2;
UIImageView *tempimageview, *bgimageview;
}
@property (nonatomic,retain) UIPageControl *pagecontrol;
@property (nonatomic,retain) UIImageView *imageview1;
@property (nonatomic,retain) UIImageView *imageview2;
- (IBAction) ButtonA_Click:(UIButton *)sender;
在 viewcontroller.m 中
@implementation ViewController
@synthesize imageview1;
@synthesize imageview2;
@synthesize pagecontrol;
- (IBAction) ButtonA_Click:(UIButton *)sender;
{
[imageview1 setImage:[UIImage imageNamed:@"MyImage.jpg"]];
tempimageview = imageview2;
[imageview1 setHidden:NO];
[imageview2 setHidden:YES];
}