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:
,but it's about nothing, it's not an integration
Regards
Niko
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:
Code:
- (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"]];
}
}
Regards
Niko