Parse NSDictionary to a string with custom separators
问题 I have an NSMutableDictionary with some values in it, and I need to join the keys and values into a string, so > name = Fred > password = cakeismyfavoritefood > email = myemailaddress@is.short becomes name=Fred&password=cakeismyfavoritefood&email=myemailaddress@is.short How can I do this? Is there a way to join NSDictionaries into strings? 回答1: You can easily do that enumerating dictionary keys and objects: NSMutableString *resultString = [NSMutableString string]; for (NSString* key in