我正在尝试运行异步 NSURLConnection ,但这会导致我的 UI 每次收到响应时都会被阻止。我的印象是异步连接不会阻塞 UI 我还设置了一个运行循环,这样我就可以响应传入的触摸事件。
下面是代码片段
self.playerConnection =[[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:NO];
[self.playerConnection scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:NSRunLoopCommonModes];
[self.playerConnection start];
有什么建议么 ?