I need open link kind of “http://www.web.com/?text=link =) http://google.ru is goooooood”
message=@"http://www.web.com/?text=link+=)+http://google.ru+is+goooooood";
twitter=[NSURL URLWithString:message];
[[UIApplication sharedApplication] openURL:twitter];
But it doesn’t work.
safari opens link: “http://www.web.com/?text=link =) “.
But I need all text.
Any ideas?
you should URL encode your parameters (special char in your patameters) you can use following function to url encode
Your message variable should look something like this –