您好,登錄后才能下訂單哦!
小編給大家分享一下IOS開發(fā)中異步網(wǎng)絡(luò)請求上如何實(shí)現(xiàn)同步邏輯,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
IOS開發(fā)中異步網(wǎng)絡(luò)請求上實(shí)現(xiàn)同步邏輯
前提:
可能遇到一些問題,比如上傳多個(gè)數(shù)據(jù),需要等多個(gè)數(shù)據(jù)上傳成功后做一定的處理,而且一個(gè)個(gè)上傳,萬一哪個(gè)上傳失敗了,后面就不需要上傳了,直接報(bào)錯(cuò)。
之前ASI的網(wǎng)絡(luò)庫中是有同步請求的接口,所以很好處理,AFNetwork的網(wǎng)絡(luò)庫只有異步的網(wǎng)絡(luò)請求,該怎么實(shí)現(xiàn)呢?
1.循環(huán)異步拼組
- (void)uploadFile:(NSArray *)imageArray atIndex:(NSInteger)index imagesCount:(NSInteger)count completeBlock:(uploadCompleteBlock)block { FNCircleImage *aTCImage = imageArray[index]; NSString *filepath = aTCImage.localFilePath; [self.resourceManager upload:filepath progress:nil completion:^(NSString * _Nullable urlString, NSError * _Nullable error) { if (error == nil) { aTCImage.remoteUrl = urlString; NSInteger idx = index + 1; if (idx >= count) { block(nil); } else { [self uploadFile:imageArray atIndex:idx imagesCount:count completeBlock:block]; } } else { block(error); } }]; }
2.信號量異步轉(zhuǎn)同步
__block NSError *e = nil; [imageArray enumerateObjectsUsingBlock:^(NSString *filePath, NSUInteger idx, BOOL * _Nonnull stop) { __block dispatch_semaphore_t t = dispatch_semaphore_create(0); [self upload:filepath progress:nil completion:^(NSString * _Nullable urlString, NSError * _Nullable error) { if (error == nil) { } else { e = error; *stop = YES; } dispatch_semaphore_signal(t); }]; dispatch_semaphore_wait(t, DISPATCH_TIME_FOREVER); }];
3.NSOperationQueue可控隊(duì)列
1).繼承NSOperation實(shí)現(xiàn)上傳邏輯,完成發(fā)出通知或者block回調(diào)
2).用上傳數(shù)據(jù)創(chuàng)建Operation數(shù)組,加入NSOperationQueue中執(zhí)行
3).根據(jù)完成回調(diào)的結(jié)果和個(gè)數(shù)判斷結(jié)果,如果中間有失敗,可以關(guān)閉未執(zhí)行的Operation
看完了這篇文章,相信你對“IOS開發(fā)中異步網(wǎng)絡(luò)請求上如何實(shí)現(xiàn)同步邏輯”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。