iPhone - Splash Screen with progress bar

后端 未结 4 663
逝去的感伤
逝去的感伤 2020-12-16 08:09

I tried to create a SplashView which display the Default.png in the background and a UIProgressBar in front. But the splash screen is not being updated...

Inside my

4条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-16 08:36

    Default.png is just a graphic, a static image shown while the application is launching. If you want to show further progress, you'll have to show everything at the applicationDidLaunch phase. Show your modal "Splash Screen" there first (Create a view controller, add its view as a subview of your main window) and dismiss it when you are done whatever additional loading you needed to do.

提交回复
热议问题