I have an NSMutableArray of custom objects with various information them. For instance the object might contain:
firstname
lastname
email
I'd like to be able to add these objects to an NSDictionary, so that I can call SBJSON's 'JSONRepresentation' Function, and the final JSON format would look like:
{
"Users" : [
{ "user1First" : "FirstName",
"user1Last" : "LastName",
"user1Email" : "Email" },
{ "user2First" : "FirstName",
"user2Last" : "LastName",
"user2Email" : "Email" },
{ "user3First" : "FirstName",
"user3Last" : "LastName",
"user3Email" : "Email" }
]
}