I want to make a small increase / fade animation, when the UIImageView appears in my opinion, I already have code for the fade effect:
banner.alpha = 0.0; [UIView animateWithDuration:2.0 animations:^{ banner.alpha = 1.0; }];
Now I want to know if there is another easy way to combine the fading effect with a small zoom effect, for example, the image gets larger and fills the frame when it disappears? Any ideas? Thanks!
source share