i m 试图通过<代码> UIImage from one UIView
in TabBarController1
to another UIView in NavigationController
in Tab BarController2
。 在观点1中,我试图:
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)image editingInfo:(NSDictionary *)editingInfo
{
UploadModifyViewController *view2 = [self.storyboard instantiateViewControllerWithIdentifier:@"modify"];
UITabBarController *navBar = [self.storyboard instantiateViewControllerWithIdentifier:@"navBar"];
view2.imageView.image = image; //<-----
[self dismissModalViewControllerAnimated:NO];
[self presentModalViewController:navBar animated:YES];
}
换文后,见2为导航管理员,导航主计长为塔巴主计长。 廉价工作,因为这些工作可能与工匠。
Posted this question here too, but still no solution. In this forum i posted a screenshot for better understanding from where to where i try to pass the image.