I want the url of the webpage of whatever to look something like this:
foo.com/l=english&se=local&incEN=false&q=bob%20bob&
the problem here is that when i say
urlString = @"foo.com/l=english&se=local&incEN=false&q=bob%20bob&";
[self initWithURL:[NSURL URLWithString:urlString]];
I want the website url string to be "foo.com/l=english&se=local&incEN=false&q=bob%20bob&" but it is giving me:
foo.com/l=english&se=local&incEN=false&q=bob22520bob&
as the string for the NSURL.
How do I fix this so that I get the desired string to be set as the NSURL string?