ボタンの選択に依存する画像を渡したいと思っています。FirstController に Button1、Button2、Button3 があります。
Button1 を押すと、Photo.png という名前の画像が SecondController に表示され、Imageview に既にビューに挿入されます。ボタン 2 を押すと、同じ Imageview に photo2.png という名前の画像が表示されます。やりたいことをどうすればいいのかわからない。画像の受け渡しをこのコードに挿入したいと思います:
- (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;
}