//創(chuàng)建一個信號量(值為0)
dispatch_semaphore_t semaphore = dispatch_semaphore_create(0);
[[AFNetWorkTool shareNetWorkTool] getWarningListwithPage2:[NSString stringWithFormat:@"1"] andFinishBlock:^(id object){
NSLog(@"1");
dispatch_semaphore_signal(semaphore);
}];
//信號量減1,如果>0,則向下執(zhí)行,否則等待
dispatch_semaphore_wait(semaphore, DISPATCH_TIME_FOREVER);
NSLog(@"222");