gpt4 book ai didi

ios - Skype Url 在 Objective C 中不起作用?skype ://USER_NAME? 调用(新 Skype 已禁用该功能)

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

我正在使用 Skype 应用程序的开放 URL 从我的 iOS 应用程序调用特定用户。但是下面的代码只是打开 Skype 但不会调用指定的用户名。

任何人都可以指导我为什么它不调用。

- (IBAction)callSkypeUser:(id)sender
{
NSLog(@"%s", __PRETTY_FUNCTION__);

NSString* urlString = [NSString stringWithFormat:@"skype://USER_NAME?call"];
NSLog(@"url = %@", urlString);

BOOL result = [[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlString]];
NSLog(@"result = %d", result);
}

最佳答案

您的网址无效。

根据 Skype reference你的 URL 字符串应该是这样的:

NSString* urlString = [NSString stringWithFormat:@"skype:USER_NAME?call"];

关于ios - Skype Url 在 Objective C 中不起作用?skype ://USER_NAME? 调用(新 Skype 已禁用该功能),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24488256/

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