What processes and threads does the iPhone OS create when the application starts?

When the application starts, I assume that the iPhone OS creates exactly one process for it, with exactly one thread (main thread). It's right? Or are there more threads or even more processes that automatically appear with the application running?

+2


source to share


1 answer


The entire application launch process is a black box for developers. However, I believe there will be more than one thread created, although you don't need to worry about that. Themes generated by the system will be managed by the system. If you are writing a multi-threaded application, you only need to worry about the threads you create.



0


source







All Articles