gpt4 book ai didi

ios - Skype URI 在 iOS 9 中不工作

转载 作者:可可西里 更新时间:2023-11-01 03:51:18 24 4
gpt4 key购买 nike

我已经实现了一个用于打开 Skype 应用程序的模块,用于各种模块聊天、通话、视频通话。它一直工作到 iOS 8。

下面是集成链接

https://msdn.microsoft.com/en-us/library/dn745885.aspx

但它现在在 iOS 9 中停止工作了。

即使安装了 Skype,下面的代码也只是打开 App-store 搜索 Skype

BOOL installed = [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"skype:"]];
if(installed)
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"skype:%@?chat",dataSource[indexPath.section]]]];
}
else
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://itunes.apple.com/in/app/skype-for-iphone/id304878510?mt=8"]];
}

有什么替代方案吗?请指导。谢谢

最佳答案

下面我分享了对我有用的图像。

我在 Skype 的 Info.plist 文件中添加了 key LSApplicationQueriesSchemes

enter image description here

BOOL installed = [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"skype:"]];
if(installed)
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"skype:%@?chat",dataSource[indexPath.section]]]];
}
else
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://itunes.apple.com/in/app/skype-for-iphone/id304878510?mt=8"]];
}

关于ios - Skype URI 在 iOS 9 中不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33254817/

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