On iOS URL Connection Parallelism and Thread Pools
The problem Did you know iOS has a limit on the number of concurrent NSURLConnections to the same end-point? No? Maybe you should, we discovered it the hard way.Create a new single-view app project on Xcode and copy the following snippet inside the viewDidLoad event of your view controller: Then add some simple NSURLConnection delegate event handlers: …