I have a NSMutableArray with objects and i want convert it to JSON to send Web Service a NSString with it information.
I have SBJSON and JSONKit frameworks, but i can't do it. Im doing it with:
NSString *JSONData=[mutablearray JSONRepresentation];
NSString *JSONData=[mutablearray JSONString];
How could I achieve this?