how to add animation to launch screen in iOS 9.3 using Objective c

后端 未结 5 1320
旧时难觅i
旧时难觅i 2020-11-30 00:51

how to make a animated splash screen like below image in iOS 9.3.

\"enter

5条回答
  •  星月不相逢
    2020-11-30 01:19

    Basically, you can't make an animated splash screen. However, you can duplicate the launch screen in your storyboard and make it the entrance-view controller (VC) of your app. Then when the view is loaded, you can start your animation. As a final result, you will have an "animated splash screen."

    The sequence progresses like this:

    App starts → display static launch screen → transition to entrance-VC, which won't be visible to the user because the scenes look the same → entrance-VC view is loaded as an animation.

    In summary, treat your launch screen's .xib file as the first frame of your animated launch screen.

提交回复
热议问题