简单的问题,但我找不到答案:requestWithURL是在主线程中发生还是创建了新线程?
我在viewDidLoad(主线程)中有这个:
//Get the current table view controller page
UIWebView *webController= [MoreTabPages objectAtIndex:i];
NSURL *urll =[NSURL URLWithString:[websites objectAtIndex:i]];
NSURLRequest *firstReq = [NSURLRequest requestWithURL:urll];
[webController loadRequest:firstReq];
答案 0 :(得分:0)
您的问题针对的是在发出URL请求时主线程是否仍在运行。 查看异步requestWithURL,这很可能是你喜欢的。
(看看这篇SO帖子:how to send Asynchronous URL Request?)