IOS - is the application running: didFinishLaunchingWithOptions in the main thread?

I am wondering if the delegate is executing the application:didFinishLaunchingWithOptions: iOS delegate method from the main thread?

Ultimately, I would like to know whether it is safe to put the UI code in this method, and if I block code from it (for example, network interactions).

Thanks.

+4
source share
1 answer

Yes, it runs in the main thread.

+8
source

All Articles