URL scheme to launch blackberry messenger in iOS

520 Views Asked by At

If i need to check whether Facebook is installed on my iOS device, i can check it by :

if([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"fb://"]])

Is there any url scheme for bbm ?

I have tried for bbm://, but didn't work.

Any help will be appreciated. Thanks in advance.

3

There are 3 best solutions below

0
On BEST ANSWER

I got the url scheme, its bbmc:// , You can detect whether bbm is installed on your iOS device by

if([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"bbmc://"]])

Blackberry should provide it on its site like instagram did like this.

0
On

I've found three URL schemes for the app:

  • bbmi://
  • pin://
  • bbmc://

it is unknown what they are really doing after the application opens.

2
On

I don't think there is. If you want to know for certain, you can open the ipa for it (it's a zip file), and find the plist. Within the plist, you can check if it registers any schemes.