mylist = {}
mylist['hebbe'] = 'lille'
mylist['batman'] = 'robin'
I am sending this back to my iPhone code in Xcode as
response.properties['mylist'] = mylist
Now I can retrieve this in my BLIP iPhone code
NSDictionary *responsedict = response.properties.allProperties;
NSString *mylistStr = [responsedict objectForKey:@"mylist"];
NSDictionary *mylistDict = ???
How can I convert mylistStr to a real NSDictionary? I have looked at BLIPProperties, but couldn't figure out how to do this;
I am sending this back to my iPhone code in Xcode as
response.properties['mylist'] = my list
How can I convert mylistStr to a real NSDictionary? I have looked at BLIPProperties, but couldn't figure out how to do this;