I have an UIImageView that I want to fade in.
UIImageView
Is there a way to enable that on an underlying UIViewController?
UIViewController
I have translated the s
this simple code:
[UIView animateWithDuration:5.0 animations:^{ theImage.alpha = 1.0; }];
the UIImage is in the view and is connected via an IBOutlet you can also, set the alpha from the utility panel.
UIImage
IBOutlet