I see Apple in default template use application:didFinishLaunchingWithOptions
: to setup window in appDelegate class. My question is why don't use application:willFinishLaunchingWithOptions
instead. Are there something which can only be done in application:didFinishLaunchingWithOptions
.
Can I use application:willFinishLaunchingWithOptions
to initialize rootViewController.
I still new in IOS, I can understand this might be a stupid question, but any help will be appreciated.