dispatch_async(dispatch_get_global_queue(0, 0), ^{
NSLog(@"4");
dispatch_async(dispatch_get_main_queue(), ^{
NSLog(@"1");
});
NSLog(@"2");
[NSThread sleepForTimeInterval:3];
NSLog(@"3");
1234
4123
4231
4213