views:

82

answers:

0

Hi! Content: I stored the image from the iPhone's camera into a UIImage *storedImage defined in ClassA.

In ClassB (subClass of ClassA) I have a UIImageView *imageView which I proceeded to set

UIImageView.image = storedImage

since ClassB has access to ClassA's objects.

Problem: Stored image does not show when ClassB's nib runs and I just can't figure out why.

Thanks in advance!