Adding a view controller as a launch screen

I am working on a launch screen where I want to add a progress bar. LaunchScreen.xib does not allow me to add a progress bar on the launch screen.

So, is it possible to add a view controller as a start screen for a certain time interval so that I can add a progress bar on the start screen of my project?

+3
source share
2 answers

No, you can’t. You cannot add any logic code to it.

And also know that during the startup screen. Your application does not start at all. So your runtime bar code is not working.

, , viewController , .

+10

"" applicationDidFinishLaunchingWithOption.as return yes line execute, . , , .

0

Source: https://habr.com/ru/post/1614853/


All Articles