Reputation: 1306
I have an opengl game, on top of it i am placing an small view that connects to the internet, retrieves data, with part of that data it connects again to retrieve an image and then displays it inside the view.
All this calls are asynchronous. Do i have to also use threads? What should i put inside in another thread?
Thanks
Upvotes: 2
Views: 129
Reputation: 8830
Nope, NSURLRequest is asyncronous, you just say what delegate it should use when receiving data and take it from there :-) No need for more threads to handle that
Upvotes: 4