私は画像ライブラリを表示するボタンを含むView Controllerを持っています。ユーザーが画像をタップすると、選択画像はボタンと同じビューに表示されますが、この画像を別のクラスに表示したい?(ビューコントローラ).MYコードがIphone imagelibrary疑問
-(IBAction) getPhoto:(id) sender {
UIImagePickerController * picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
if((UIButton *) sender == choosePhotoBtn) {
picker.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;
}
[self presentModalViewController:picker animated:YES];
}
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {
[picker dismissModalViewControllerAnimated:YES];
imageView.image = [info objectForKey:@"UIImagePickerControllerOriginalImage"];
}
で、同じビュー内の画像を示しているが、私の必要性は、このDOD別view.Howでそれを示すことです。
はちょうどあなたが – Bala