dispatch_group_async(group,queue,^{ [NSThread sleepForTimeInterval:1]; NSLog(@"Calculando o tamanho do sol"); }); dispatch_group_async(group,queue,^{ NSLog(@"Esperando a mulher fazer compras"); }); dispatch_group_notify(group,queue,^{ NSLog(@"Será executado após os dois blocos"); }); Monday, March 19, 12