0

以下代码冻结了我的 UI。不能做任何动作。

- (void) longPoll {
    //create an autorelease pool for the thread
    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

        NSError* error = nil;
        NSURLResponse* response = nil;
        NSURL* requestUrl = [NSURL URLWithString:@"myurl"];
        NSURLRequest* request = [NSURLRequest requestWithURL:requestUrl];

        //send the request (will block until a response comes back)
        NSData* responseData = [NSURLConnection sendSynchronousRequest:request
                                                     returningResponse:&response error:&error];
        dispatch_async(dispatch_get_main_queue(), ^{
            [self dataReceived:responseData];
        });
    });
        //compose the request


        //pass the response on to the handler (can also check for errors here, if you want)


        //clear the pool

    }




- (void) startPoll {
    //not covered in this example:  stopping the poll or ensuring that only 1 poll is active at any given time
    [self performSelectorInBackground:@selector(longPoll) withObject: nil];
}

- (void) dataReceived: (NSData*) theData {
    //process the response here
    NSDictionary *dict=[theData JSONValue];
   [self ParseJson:dict];
     [self performSelectorInBackground:@selector(longPoll) withObject: nil];
}

谁能给我确切的原因或任何替代方法来执行类似代码以继续轮询。

4

2 回答 2

1

您正在创建一个无限循环:

longCall打电话等dataReceived....longCall

于 2013-07-24T10:24:45.677 回答
0

你到底想做什么。longPool 和 dataReceived 之间存在无限循环,应该有停止此调用的机制,您可以使用

@autorelease {} block for create autorelease pool in ARC Enabled project and
NSAutoReleasePool class obj for Without ARC.
于 2013-07-24T11:37:04.257 回答