I want to show a new view on the screen. Before showing it, I want to initialize it with an image that was just capture by the camera. This is a part of the code:
[self.view addSubview:self.photoPreviewView.view];
UIImageView *photo = self.photoPreviewView.imageView;
[[self captureManager] captureStillImage:photo];
As you can notice, I first call the addSubView and only later setting the photo. I do it since the "imageView" (of "photoPreviewView.imageView") is only accessible after calling "addSubView".
This creates a not nice experience, when first the view is shown in white, and only then a photo is being shown.
Is there a way of handling this issue?