0

Does using lot of NSURLConnection blocks the UI/Main thread or does it slows down the responsive-ness of the app???
I've around max of 16 connections running at a time.
The app becomes non-responsive after some time.
One more doubt.. Do asynchronous NSURLConnection run on different thread???

Amresh Kumar
  • 1,445
  • 17
  • 30

1 Answers1

0

I haven't found that in the documentation but i've already had problems running more than 4 NSURLConnection asynchronous in a project. Try to reduce the number to 2-3 and if not possible use NSOperation with NSOperationQueue.

Stefan Ticu
  • 2,093
  • 1
  • 12
  • 21