I am developing one iOS application that Post data to web service and Get data from the Web service. I am using Afnetworking for Post the data to web service.Web service accept the data in the form of array of dictionaries like
[{"name":"stephen","age":25},{"name":"john","age":35},{"name":"david","age":45},{"name":"roger","age":15}]
which need to send in the body of the request and set Accept application/json in the header of the request.
I checked some examples already avilable in the stack overflow but all are explain about Post dictionary .My question is possible to Post array to web service using Afnetworking. If it is possible help me to develop the code which completely reach my requirements.