質問

I got 2 ImageViews which fade in and out with a timer but I think that needs too much memory so I want a fade animation with one ImageView. Is this possible ?

役に立ちましたか?

解決

You can do this by using UIView's + transitionWithView:duration:options:animations:completion: method.

[UIView transitionWithView:yourImageView duration:7.0f options:UIViewAnimationOptionTransitionCrossDissolve animations:^{
       yourImageView.image = newImage;
    } completion:nil];
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top