I am using the NSURL class in the iPhone framework foundation library to create a url request to a server. For some reason, I am getting back a nil for only this particular URL. I don't understand why. Any reason?
The Objective C code is :
NSURL *scriptURL= [NSURL URLWithString:scriptURLString];
where scriptURLString is an NSString with value give below:
The above URL is a CGI request.
Is there a special character I need to escape here?
Please advice. Thanks in advance.