I want to create and to send JSON Array string given below: I am using JSON Framework, it can parse JSON array but how to create JSON Array
{ \"deferred\": [
SBJSON is useful for the same. For better guidance Tutorial: JSON Over HTTP On The iPhone
SBJSON will work like...
SBJSON *json = [[SBJSON new] autorelease]; NSMutableArray *ArrayResponse = [[NSMutableArray alloc] initWithArray:[json objectWithString:responseString error:nil]];