My code
UIImage *img = [UIImage imageWithCGImage:[repr fullResolutionImage]];
[_photoPreview setImage:img];
works fine for the first time. When I want to update the image in _photoPreview however, it will not do so and stays with the original.
I have a vague suspicion that this is to do with when the interface is loaded or something but I could be completely wrong. Any help would be greatly appreciated.
I have no problems changing the image in the image view by implementing the following code in a view controller.