我正在寻找传递取决于按钮选择的图像。我的 FirstController 上有 Button1、Button2、Button3。
我希望当我按下 Button1 时,在 SecondController 上显示的名为 photo.png 的图像已插入到 Imageview 中。如果我按下按钮 2 也是一样,名为 photo2.png 的图像会显示在同一个 Imageview 上。我真的不知道该怎么做我想做的事。我想将图像的传递插入此代码:
- (IBAction)Button1:(id)sender {
SecondController *dvController = [[SecondController alloc]
initWithNibName:@"SecondController" bundle:[NSBundle mainBundle]];
dvController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentModalViewController:dvController animated:YES];
[dvController release];
dvController = nil;
}