What is the preferred way to make a GET request with ASIHttpRequest using query params provided as an NSDictionary.
How do I get
from NSDictionary *params
to ?param1=value1¶m2=value2 (percent-encoded)
Obviously I can construct the query part of the URL manually but it seems like there is probably a better way.
Thanks!