문제

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