I have a string retrieving from sqlite
({
studentId = SUE1291ST;
studentName = "Student123Sdfw";
},
{
studentId = SUE13291ST;
studentName = "name123Sdfw";
})
how to convert to NSMutableArray and to get NSDictionary.... ?
descriptionmethod to convert an NSArray into a string and store that into the SQLite database. There is no reliable way to reconstruct the array/dictionary from the description string (see stackoverflow.com/a/16783704/1187415 for an unreliable method). You should store the dictionary in a different way, e.g. in JSON format.