简体   繁体   中英

I want to integrate Skype in my iPad application

I am new at iPhone developer. I want to integrated Skype in my iPad application. But Developer Skype page reply me "The Skype Developer program is not accepting new registration." How can i get Skype SDK for integration. How can I integrated Skype API in my application. Any other way to make developer Skype account. Please help me. Many Thanks.

Skype only allow you to open skype application on your device, if its not installed it opens itunes page for it to download. Oterwise there is no such API available for it.

- (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:@"http://itunes.com/apps/skype/skype"]];
    }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM