iOS Animated Splash Screen

萝らか妹 提交于 2019-11-30 03:38:44
jcesarmobile

Seems like people here doesn't know the difference between splash screen and launch image. Launch images are static, you configure them with xcode and you can't change them.

But in a splash screen you can do whatever you like, it's just a viewController where you show an animation, a video, or any other thing. You show the splass screen after the launch image and before your "landing page". Then, in a splash screen you can create an animation frame by frame, or load a .mp4 video in a MPMoviePlayerController as Krumelur said.

People using animated splash screens, usually use a launch image with the color of the splash screen (color of the first animation frame or the color of the video), so it seems that the launch image is part of the splass screen.

It is relatively easy to create an animated splash screen. You need to create a compliant .mp4 file on and use the first frame of this movie as the launch image. Then instantiate a MPMoviePlayerController on app launch to play the movie in full screen. The movie will start a few moments after the launch image has been shown.

MPG

Doesn't look like possible. You may want to have a look of following post dynamic splash screens

You have to write the animation frame by frame.

Another guide for animating splash screen Animation on splash screen

Hence you will have to show splash screen and then you may add any animation on view or add any movie(for example: .mov)

Hope this will help!!

You cannot display .fla files on iOS. Flash is not allowed as content in iOS. Also, splash screens can only be static graphics.

An iOS splash screen is static. So it's just an image. But you can add your splashscreen and then just add a movie (.mov or other Apple format) just after your splashscreen disappears.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!