How to execute a method on another thread using Grand Central Dispatch
Everything in your iOS app happens on “the main thread” by default. It’s like at the hairdresser’s – one thing after another. Since iOS 4 however you can execute things “asynchronously” by using Grand Central Dispatch. With it comes another phenomenon called Blocks. To make use of this feature you need to define your own […]