Good .. The simplest example)
You can write this code in any way. for instance
-(void) viewDidLoad {
[super viewDidLoad];
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
NSLog (@"Hi, I'm new thread");
dispatch_async(dispatch_get_main_queue(), ^{
NSLog (@"Hi, I'm main thread");
});
});
}
source
share