2

所以我希望我的应用程序在发送 http 请求并获得响应时不要锁定 GUI,我尝试了,但它抱怨我在主线程之外使用 uikit,有人可以告诉我分离 http 和桂?

-(void)parseCode:(NSString*)title{

    UIActivityIndicatorView *spinner;
    spinner.center = theDelegate.window.center;
    spinner.tag = 12;
    [theDelegate.window addSubview:spinner];
    [spinner startAnimating];

    dispatch_queue_t netQueue = dispatch_queue_create("com.david.netqueue", 0);

    dispatch_async(netQueue, ^{
        NSString *url =[NSString stringWithFormat:@"http://myWebService.org/"];
        // Setup request
        NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
        [request setURL:[NSURL URLWithString:url]];
        [request setHTTPMethod:@"POST"];
        NSString *contentType = [NSString stringWithFormat:@"application/x-www-form-urlencoded"];
        [request addValue:contentType forHTTPHeaderField:@"Content-Type"];

        NSMutableString *data = [[NSMutableString alloc] init];
        [data appendFormat:@"lang=%@", @"English"];
        [data appendFormat:@"&code=%@", theDelegate.myView.text ];
        [data appendFormat:@"&private=True" ];
        [request setHTTPBody:[data  dataUsingEncoding:NSUTF8StringEncoding]];
        NSHTTPURLResponse *urlResponse = nil;
        NSError *error = [[NSError alloc] init];

        NSData *responseData = [NSURLConnection sendSynchronousRequest:request
                                             returningResponse:&urlResponse
                                                         error:&error];

        NSString *result = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];


        dispatch_async(dispatch_get_main_queue(), ^{

            [spinner stopAnimating];
            [spinner removeFromSuperview];
            [self presentResults:result];
        });

    });

}
4

3 回答 3

1

我没有看太多,但你总是可以尝试,

[self performSelectorInBackground:@selector(parseCode:) withObject: title];

该方法导致该函数在后台的单独线程上运行,并且几乎不需要努力实现,我在进行简单下载时使用它,例如 [NSData dataWithContentsOfURL:url]; 但如果你正在做更大的事情,你可能需要做更多的工作。

如果您需要在类之外调用该方法,那么您将必须在类中创建一个方法,该方法进行上面的调用,然后调用选择器

于 2013-05-31T13:50:23.510 回答
1

而不是 using NSURLConnection:sendSynchronousRequest, use NSURLConnection:initWithRequest:delegate:startImmediately:,它异步发送请求。使用NSURLConnection:connectionDidFinishLoading委托方法来处理响应。

Apple 在URL 加载系统编程指南中提供了一个示例。

如果设置startImmediatelyYES,则委托方法将在与调用请求的运行循环相同的运行循环中被调用。最有可能的是,这将是您的主运行循环,因此您可以在委托方法中随意修改 UI,而不必担心线程问题。

于 2013-05-31T13:54:29.290 回答
1

我认为问题不在于您的 HTTP 代码 - 在于您从后台线程中访问 UI。特别是这一行:

[data appendFormat:@"&code=%@", theDelegate.myView.text ];

假设您在那里访问 aUITextView或类似的东西。您需要在后台线程之外执行此操作。将其移动到局部NSString变量中,然后您可以从后台线程中安全地访问该变量。

于 2013-05-31T14:17:42.970 回答