2 つのビューを持つ iOS アプリケーションを作成しようとしています。最初のビューには、カメラとライブラリの 2 つのボタンがあります。ライブラリを選択すると、カメラロールにアクセスします。写真を選択して、別のビューで開きたい。今まで私はこの関数を書いています
-(IBAction) getPhoto:(id) sender {
UIImagePickerController * picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
if((UIButton *) sender == choosePhotoBtn) {
picker.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;
} else {
picker.sourceType = UIImagePickerControllerSourceTypeCamera;
}
[self presentViewController:picker animated:YES completion:nil];
}
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {
[picker dismissViewControllerAnimated:YES completion: Nil];
imageView.image = [info objectForKey:@"UIImagePickerControllerOriginalImage"];
}
同じビューで私の画像を開いてください。この画像を別のビューで開くにはどうすればよいですか?