gpt4 book ai didi

ios - 如何在 objective-c 中打开https链接?

转载 作者:行者123 更新时间:2023-11-29 00:28:39 25 4
gpt4 key购买 nike

https://www.google.co.in/

https://en-gb.facebook.com/login/

我可以成功打开上面的链接...但是下面的链接在 webView 中打不开,为什么?如何解决这个问题?

https://itunes.apple.com/in/developer/whatsapp-inc/id310634000?mt=8&uo=2

- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.

UIWebView *webView = [[UIWebView alloc]init];
webView.frame = self.view.frame;
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:self.urlString]]];
[self.view addSubview:webView];
NSLog(@"%@", self.urlString);
// https://itunes.apple.com/in/developer/whatsapp-inc/id310634000?mt=8&uo=2
}

这个 self.urlString 来自服务器...

最佳答案

从这里Link .

也许为了更好的用户体验,itunes 链接不会在 UIWebView 中打开,因为 iTunes 内容在移动设备上没有“iTunes 预览”页面 - iOS 自动识别 itunes.apple.com 链接并打开商店。

因此,如果您想打开 itunes 链接,您应该使用 SKStoreProductViewController。它会在您的应用中打开您的 itunes 项目。请点击以下链接使用SKStoreProductViewController

How to links to apps to app store

Documentation

关于ios - 如何在 objective-c 中打开https链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42407576/

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