ヘッダーを取得する必要があるNSMutableArray
7つのインターネットが含まれています。URLs
HTTP
私はこれらのメソッドを使用してasynchronous
接続を確立しています(そしてすべてが完全に機能します):
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
URL
問題は、の順序に従ってそれぞれをダウンロードする必要があることですがNSMutableArray
、接続の性質上asynchronous
、順序が混乱します。
synchronous
接続をブロックするため、接続を使用したくありませんMain Thread.
ダウンロードが7を含む私の0から6までのインデックスの順序に従うことを保証するためにを使用GCD
してキューを作成するにはどうすればよいですか?Main Thread
NSMutableArray
URLs
ご協力いただきありがとうございます!