How to have common NSConnection for various data proccessing from web server in iphone. if possible can i have code for it

Regards, sathish

link|improve this question

59% accept rate
feedback

1 Answer

up vote 0 down vote accepted

I wrote some blog posts about NSURLConnection.

Using NSURLConnection

Sending POST Data Using NSURLConnection

Hope This Helped. Let me know if you need any more information.

link|improve this answer
Hi, I done already NSURLConnection it. but i want to connect to server for various view controller to retrieve data? whether it is no problem to have no main thread to connect to server? – sathish kumar Jul 6 '10 at 4:24
What are you trying to retrieve? All the data that the server sends to your application is stored as an instance of NSData. You have to convert the data to what you want. And it could be a problem if it is on the main thread, but it really just depends on how much data you are transferring. It is good practice to have connect to a server on another thread. – Conceited Code Jul 6 '10 at 4:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.