dispatch_group_t group = dispatch_group_create();
dispatch_queue_t serialQueue = dispatch_queue_create("com.wzb.test.www", DISPATCH_QUEUE_SERIAL);
dispatch_group_enter(group);
dispatch_group_async(group, serialQueue, ^{ ? ? ? ?
// 網(wǎng)絡(luò)請(qǐng)求一? ? ? ??
? ? ? ? ? ? ? ?[WebClick getDataSuccess:^(ResponseModel*model) {? ? ? ? ? ??
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?dispatch_group_leave(group);? ? ? ?
? ? ? ? ? ? ? ? ? ? ? } failure:^(NSString *err) {? ? ? ? ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? dispatch_group_leave(group);
? ? ? ? ? ? ? ? ? ? }];
? ?});
dispatch_group_enter(group);
dispatch_group_async(group, serialQueue, ^{? ? ? ??
// 網(wǎng)絡(luò)請(qǐng)求二? ? ? ??
? ? ? ? ? ? ? ?[WebClick getDataSuccess:getBigTypeRMonSuccess:^(ResponseModel*model) { ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?dispatch_group_leave(group);? ? ? ??
? ? ? ? ? ? ? ? ? ? ?}failure:^(NSString *errorString) {? ? ? ? ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?dispatch_group_leave(group);
? ? ? ? ? ? ? ? ? ? }];
? ? ?});
? // 所有網(wǎng)絡(luò)請(qǐng)求結(jié)束后會(huì)來(lái)到這個(gè)方法? ?
?dispatch_group_notify(group, serialQueue, ^{? ? ? ?
? ? ? ? ? ? dispatch_async(dispatch_get_global_queue(0, 0), ^{? ? ? ? ? ??
? ? ? ? ? ? ? ? ? ? ? dispatch_async(dispatch_get_main_queue(), ^{? ? ? ? ? ? ? ?
? ? ? ? ? ? ? ? ? ? ? ?// 刷新UI? ? ? ? ? ??
? ? ? ? ? ? ? ? ? ? ? ?});? ? ? ??
? ? ? ? ? ?});? ??
});
作者:雜霧無(wú)塵
鏈接:http://www.reibang.com/p/9fcd37c0ea05
來(lái)源:簡(jiǎn)書