I have an NSmutableArray, and i want to send to the server in JSON format,the server will deserialize it and uptade the mysql.
NSMutableArray * jsonObject = [[NSMutableArray alloc]initWithObjects:@"Some",nil];
NSString* jsonString = jsonObject.JSONRepresentation;
I think that´s the ideia its correct? And how to send to server?