-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Feb 16のGoogle Formsより。
Skypeの開発者向けページではskype:echo123?call
というURL Schemeが紹介されている。
https://learn.microsoft.com/en-us/skype-sdk/skypeuris/skypeuritutorial_iosapps?redirectedfrom=MSDN
- (IBAction)skypeMe:(id)sender
{
BOOL installed = [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"skype:"]];
if(installed)
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"skype:echo123?call"]];
}
else
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://itunes.apple.com/in/app/skype/id304878510"]];
}
}
Metadata
Metadata
Assignees
Labels
No labels