1

UITableViewURLを取得して入力しようとしています。フリーズ UI を回避するために、非同期フェッチを使用dispatch_async(dispatch_queue_t queue, ^(void)block)しています。応答待ちに使用する非同期ブロックで。NSRunLoop

ここに私の取得コードがあります:

- (BOOL)isFinished {
    return _finished;
}

- (void)startReceive {
    NSURLRequest* request = [NSURLRequest requestWithURL:self.baseURL];
    self.connection = [NSURLConnection connectionWithRequest:request delegate:self];
    assert(self.connection);
}

- (void)stopReceiveWithStatus:(NSString*)statusCode {
    if (self.connection) {
        [self.connection cancel];
        self.connection = nil;
    }
    self.finished = YES;
    NSLog(@"Stop Receive with status code %@", statusCode);
}

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
    assert(connection == self.connection);
    NSHTTPURLResponse* httpResponse = nil;
    if ([response isKindOfClass:[NSHTTPURLResponse class]]) {
        httpResponse = (NSHTTPURLResponse*) response;

        if (httpResponse.statusCode != 409) {
            // I need 409 to fetch some data
            [self stopReceiveWithStatus:[NSString stringWithFormat:@"HTTP error %2d", httpResponse.statusCode]];
        }
    }
}

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
    assert(connection == self.connection);
    self.sessionID = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
}

- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
    assert(connection == self.connection);

    [self stopReceiveWithStatus:@"Connection failed"];
}

- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
    assert(connection == self.connection);

    [self stopReceiveWithStatus:nil];
}

UITableViewController:

// refreshControl handler
- (IBAction)refresh {
    [self startRefreshingAnimation];
    dispatch_queue_t loaderQ = dispatch_queue_create("loading transmission data", NULL);
    dispatch_async(loaderQ, ^{
        [self foo]; 
        while(!self.t.finished) {
            [[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]];
        }
        dispatch_async(dispatch_get_main_queue(), ^{
            [self endRefreshingAnimation]; // end
        });
    });
}

- (void)foo {
    NSLog(@"session id: %@", self.t.sessionID);
}

sessionIDHTTPリクエストが完了すると、それが満たされます。今問題はsessionID、最初の呼び出しが満たされていないため、最初の呼び出しを取得できないことです。2回目はうまく機能します。最初の呼び出し時にどのように取得できますか?

私はiOSが初めてです。この問題を解決するためのより良い解決策があれば教えてください、ありがとう。

4

2 に答える 2

0

STHTTPRequestなどのネットワーク接続を処理するには、サードパーティ ライブラリを使用する必要があります。

STHTTPRequest *r = [STHTTPRequest requestWithURLString:@"http://www.apple.com"];

r.completionBlock = ^(NSDictionary *headers, NSString *body) {
    // ...
};

r.errorBlock = ^(NSError *error) {
    // ...
};

[r startAsynchronous];
于 2013-08-27T10:50:19.867 に答える