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.
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.