Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to send array of <Full name, Email> pairs to my php webservice. Should I use NSMutable array of dictionaries? What is the proper way?

Update:

I want to send in JSON.

share|improve this question
There is no json encode function ? – CORRUPT 8 mins ago
I want to send array of pair of elements in JSON. – ChampTaurus 4 mins ago

1 Answer

If it's going to be JSON formatted data use dictionaries. Look into AFNetworking library which handles all of your networking calls asynchronously for you.

share

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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