State Restoration Question

I'm trying to work through the state resotation checklist and this one statement has me confused:

(https://developer.apple.com/library/ios/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/StrategiesforImplementingYourApp/StrategiesforImplementingYourApp.html)


(Required) Show your app’s window from the

application:willFinishLaunchingWithOptions:
method of your app delegate. The state restoration machinery needs the window so that it can restore scroll positions and other relevant bits of your app’s interface.


I'm not explicitly showing my app's window, its'd a story board app and all that happens automatically. Is there something I'm missing? This is on swift if it matters.

So I more or less found my answer here:

http://stackoverflow.com/questions/21878076/rootview-controller-are-shown-shorty-when-state-restorating


simple enough, but now I also some third party libraries that get initialized in didFinishLaunchingWithOptions that needed to move to willFinishLaunchingWithOptions

State Restoration Question
 
 
Q