Hey!
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 = [email protected]
becomes name=Fred&password=cakeismyfavoritefood&[email protected]
How can I do this? Is there a way to join NSDictionaries
into strings?