image is not getting loaded in view.

Posted by anurag on Stack Overflow See other posts from Stack Overflow or by anurag
Published on 2010-05-27T13:28:45Z Indexed on 2010/05/27 13:31 UTC
Read the original article Hit count: 201

Filed under:

I have created 2 views named "FirstView" and "SecondView".SecondView's nib file has an UIImage view object as its IBOtlet.Now I am getting an UIImage object from some FirstViewController's method.Now I am setting the SecondViewController's imageView property with that image and then I am pushing my SecondView Controller's object in Navigation Controller.The SecondView gets loaded but that image is not shown in that view. The code is as follows:.....

  • (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)img editingInfo:(NSDictionary *)editInfo

{

[[picker parentViewController] dismissModalViewControllerAnimated:YES];

SecondViewController *secondView=[[SecondViewController alloc] initWithNibName:@"SecondViewController" bundle:[NSBundle mainBundle]];

secondView.imageView.image=img;

[self.navigationController pushViewController:secondView animated:YES];

}

© Stack Overflow or respective owner

image is not getting loaded in view.

Posted by anurag on Stack Overflow See other posts from Stack Overflow or by anurag
Published on 2010-05-27T12:42:07Z Indexed on 2010/05/27 12:51 UTC
Read the original article Hit count: 201

Filed under:

I have created 2 views named "FirstView" and "SecondView".SecondView's nib file has an UIImage view object as its IBOtlet.Now I am getting an UIImage object from some FirstViewController's method.Now I am setting the SecondViewController's imageView property with that image and then I am pushing my SecondView Controller's object in Navigation Controller.The SecondView gets loaded but that image is not shown in that view. The code is as follows:.....

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)img editingInfo:(NSDictionary *)editInfo

{

   [[picker parentViewController] dismissModalViewControllerAnimated:YES];

   SecondViewController *secondView=[[SecondViewController alloc] initWithNibName:@"SecondViewController" bundle:[NSBundle mainBundle]];

   secondView.imageView.image=img;

   [self.navigationController pushViewController:secondView animated:YES];  

}

© Stack Overflow or respective owner

Related posts about iphone