Does anybody know if it is possible open Skype.app to call phone via

- (BOOL)openURL:(NSURL *)url

UIApplication message?

If it possible, what url a need pass to this message?

Thanks

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Just for reference, this seems to have changed when multitasking support was added: starting at least with Skype 2.1.0, this URI works fine: skype:+33123456789?call

link|improve this answer
Great news! I'll remove my outdated answer! – pgb Sep 28 '10 at 12:02
Thank You very much! – Igor Sep 28 '10 at 17:05
Can I open chat in skype with specified account? And if them not added to my list ? – Sergey Sep 30 '11 at 12:02
feedback

By looking at Skype's Info.plist file (you can open it from the ipa file iTunes has downloaded), you can tell it has no URL registered, so you won't be able to call it from your application.

You should look for a key called CFBundleURLTypes (you can look at Twiterrific's for an app that has one defined).

Update: Apparently, starting with Skype 2.1, there is a URL registered. See other answers on this question.

link|improve this answer
Good info on where to look. – Peter DeWeese Apr 12 at 12:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.