How can I sanitize URLs made from strings to replace characters like space to %20 and etc?
How can I Print a NSURL in NSLog?
How can I send data to a webserver using POST? i know that for HTML GET:
NSURL * theURL = [[NSURL alloc] initWithString:url];
NSString * results = [NSString stringWithContentsOfURL:theURL];
will do the deal, but what is i am sending over secret data such as username and password?