Hi all,
I'm using JSON-Framework in my project successfully to decode JSON send from a server.
Now I need to do it the other way around and I'm facing problems as the data to be sent is a NSMutableArray fetched from CoreData.
When using
NSString* jsonString = [menuItems JSONRepresentation]
I get the message "JSON serialisation not supported for MenuItems".
Do I need to convert the NSMutableArray to some other format so the JSON-Framework can serialize it?
Thanks for any help,
Miguel