I need to send an NSArray to the server in the JSON array format. How can I convert it to JSON. This is a sample of my NSArray>
NSArray
JSON
NSArray>
Is the service you are calling a RESTful service?
If so, I'd strongly recommend using RestKit. It does object serialization/deserialization. It also handles all the networking underpinnings. Extremely valuable, and well maintained.