When my app is starting up I'm showing the default LaunchScreen.storyboard
and then I'm transitioning to a view controller StartupAnimation
containing an animation whose first frame is identical to LaunchScreen.storyboard
so that the transition looks seamless. Then from there, I'm presenting my HomeScreen
. This all works nice and I'm able to show the animation only on startup.
I'm wondering, however, is there's a way to make the animation contained in StartupAnimation
a subView of HomeScreen
so I can load the data of HomeScreen
while the animation is finishing? In other words, can I show my animation the first time HomeScreen
loads (during app startup) but have it hidden every other time HomeScreen
loads?