Reputation: 413
So, I'm trying to create a splash screen for an action extension, since i got some work i would like to do before presenting the app.
How can i do this?
I've added a launch screen in the extension and checked the "Use as launch screen" flag, but it doesn't show.
I'm not sure that its even loaded since i'm not allowed to create a VC for it.
Upvotes: 1
Views: 321
Reputation: 219
basically you need to create your own view controller and make the animations there until you actually finish your app preparations. You might want to take a look at something already implemented like this one: https://github.com/sachinkesiraju/SKSplashView
Upvotes: 1