简单的问题,但我找不到答案: 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];