使用 get 变量中的 Web 链接通过 NSURL 打开 Safari

发布于 2024-11-04 16:03:56 字数 414 浏览 1 评论 0原文

我需要打开链接类型“http://www.web.com/?text=link =) http://google.ru< /a> is gooooooood”

message=@"http://www.web.com/?text=link+=)+http://google.ru+is+goooooood";
twitter=[NSURL URLWithString:message];
[[UIApplication sharedApplication] openURL:twitter];

但它不起作用。 Safari 打开链接:“http://www.web.com/?text=link =) ”。 但我需要所有文字。 有什么想法吗?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情何以堪。 2024-11-11 16:03:56

你应该对你的参数进行URL编码(你的参数中的特殊字符)你可以使用以下函数对你的消息变量进行URL编码

- (NSString *)stringByURLEncode:(NSString *)param {

    NSMutableString *tempStr = [NSMutableString stringWithString:param];
    [tempStr replaceOccurrencesOfString:@" " withString:@"+" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [tempStr length])];


    return [[NSString stringWithFormat:@"%@",tempStr] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

}

你的消息变量应该看起来像这样 -

message=[NSString stringWithFormat:@"http://www.web.com/?text=%@",[self stringByURLEncode:@"link+=)+http://google.ru+is+goooooood"]];

you should URL encode your parameters (special char in your patameters) you can use following function to url encode

- (NSString *)stringByURLEncode:(NSString *)param {

    NSMutableString *tempStr = [NSMutableString stringWithString:param];
    [tempStr replaceOccurrencesOfString:@" " withString:@"+" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [tempStr length])];


    return [[NSString stringWithFormat:@"%@",tempStr] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

}

Your message variable should look something like this -

message=[NSString stringWithFormat:@"http://www.web.com/?text=%@",[self stringByURLEncode:@"link+=)+http://google.ru+is+goooooood"]];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文