Google News
logo
Swift - Interview Questions
What mechanism does iOS support for multi-threading?
NSThread : It can create a low-level thread which can be started by using the “start” method.

NSOperationQueue :
It allows a pool of threads to be created and is used to execute “NSOperations” in parallel.
Advertisement