gpt4 book ai didi

ios - 需要一种正确构建 NSURL 的方法

转载 作者:行者123 更新时间:2023-11-29 04:21:41 24 4
gpt4 key购买 nike

我将用户的网站地址存储在常规 NSString 中。
有些给出为“www.somewebsite.com”,有些给出为“http://somewebsiteothersite.org”。

我的应用程序应该打开 UIWebView 并打开该网页:

    NSURLRequest *requestObj = [NSURLRequest requestWithURL:[NSURL URLWithString:[self websiteString]]];
NSLog(@"visiting: %@",websiteString);
[webView loadRequest:requestObj];

但是,如果省略 http://,UIWebView 将无法打开页面。

有没有一种下降的方法可以为 UIWebView 正确构建 NSURL?

谢谢!

最佳答案

如果没有,只需添加 http:// 即可?

if (![urlStr hasPrefix:@"http://"] && ![urlStr hasPrefix:@"https://"]) {
urlStr = [@"http://" stringByAppendingString:urlStr];
}

谨防不包含 http:// 的链接,例如 ftp://mailto:

关于ios - 需要一种正确构建 NSURL 的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12915899/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com