I have an NSMutableDictionary with some values in it, and I need to combine 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 in strings?
join iphone nsstring separator nsdictionary
Emil
source share