gpt4 book ai didi

ios - 在更新UI之前出现NSURLConnection sendAsynchronousRequestcompleteHandler日志出现

转载 作者:行者123 更新时间:2023-12-01 17:18:32 24 4
gpt4 key购买 nike

我有这段代码将json字符串发送到服务器

[NSURLConnection
sendAsynchronousRequest:req
queue:[[NSOperationQueue alloc] init]
completionHandler:^(NSURLResponse *response,
NSData *data,
NSError *error)
{

if ([data length] >0 && error == nil)
{

NSLog(@"Done");

}
else if ([data length] == 0 && error == nil)
{
NSLog(@"Nothing was downloaded.");
self.resultLabel.text=@"Done!";
self.view.userInteractionEnabled = TRUE;
}
else if (error != nil){
NSLog(@"Error = %@", error);
}


}];

异步请求正常完成,并且日志几乎在完成后立即显示。但是,此代码:
self.resultLabel.text=@"Done!";
self.view.userInteractionEnabled = TRUE;

需要10秒钟才能显示在用户界面中。有人知道为什么会这样吗?

最佳答案

您必须在主线程中执行所有UI更改:

....
if ([data length] == 0 && error == nil) {
dispatch_async(dispatch_get_main_queue(), ^{
self.resultLabel.text=@"Done!";
self.view.userInteractionEnabled = TRUE;
});
}
....

关于ios - 在更新UI之前出现NSURLConnection sendAsynchronousRequestcompleteHandler日志出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14650790/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com