How to animate multiple images in a sequence?

Hi Everyone

I'm searching how to animate multiple images in a sequence.
ex) image01, 02, 03, 04, 05
Each image is expected to be displayed in a sequence every about 50ms.

Just using Image view and timer is correct way? I suppose there is better and more standard way..

Any one knows that?
Answered by Claude31 in 643839022
Have a look here on how to display sequence of images.
https://stackoverflow.com/questions/45745432/ios-11-animated-gif-display-in-uiimageview

Note that creating a gif is not an option, as it cannot be displayed in UIImageView.
https://stackoverflow.com/questions/39706401/generate-and-export-an-animated-gif-via-swift-3-0
Accepted Answer
Have a look here on how to display sequence of images.
https://stackoverflow.com/questions/45745432/ios-11-animated-gif-display-in-uiimageview

Note that creating a gif is not an option, as it cannot be displayed in UIImageView.
https://stackoverflow.com/questions/39706401/generate-and-export-an-animated-gif-via-swift-3-0
Thank you for sharing the solution.
That helps a lot.

Following the keywords that these articles write down, I searched another information for SwiftUI. Then I found that.

https://stackoverflow.com/questions/57151335/how-to-animate-images-in-swiftui-to-play-a-frame-animation

Thanks to your information, I could reach the solution.
Thank you so much :-)
Thanks for the feedback.

Don't forget to close the thread by marking correct answer.
How to animate multiple images in a sequence?
 
 
Q