Jump to content

Skype integration (2013-14)


2 posts in this topic

Recommended Posts

Hi, all!

 

I just need to know, is there any ways to integrate Skype into the app right now. I need only a chat functionality. No video or audio calls, no file transfer, only chat.

 

Official site has some "integration" tutorial:


- (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"]];
 }
}

,but it's about nothing, it's not an integration

 

Regards

 

Niko

Link to comment
Share on other sites

  • 2 weeks later...
 Share

×
×
  • Create New...