I’m wondering if it’s possible to have a slide with text AND add some animation into it for an iPad app. See screenshot below to get an idea of what I need. I want that guy jump up and down and smile. I’m sure I’m not capable of drawing that image using Objective-C primitives myself, so I’m looking at the following options:
-
Do complete animation in 3rd-party tool (Adobe?) and then add it as single standalone file on the slide. But I do not know, what formats are supported in iOS, what are standard formats, and, at the end, how to insert that file on the slide. Can somebody clarify this please?
-
Do complete animation, and then save frames as images, and then quickly change images to give illusion of a movie.
Am I missing something? Are there any other ways? what’s the best option?
Please let me know if I’m not clear enough – I will try to provide more information.
Thank you.

If you want to use a movie file for the animation, you can find the supported video formats in the iOS Technology Overview, under “Media Layer > Video Technologies”. You will need to use an
AVPlayerLayerfrom theAVFoundationFramework to show the video.If you want to use a separate image file for each frame, you can use one of the
+[UIImage animatedImage...]methods to create an animatedUIImage, and display it in aUIImageView.If you want to use a single animated GIF for the animation, you can use this public domain
UIImage+animatedGIFcategory to load the GIF into an animatedUIImage, and display it in aUIImageView.