Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Has something changed recently in iOS? I've been able to call the following in the past:

BOOL twitter = [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"twitter://user?screen_name=username"]];
if (twitter) {
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"twitter://user?screen_name=username"]];
} else {
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.twitter.com/username"]];
}

What this would do is basically check whether the device responds to the URL (if the app is installed or not) and open the app if it's installed, otherwise do else

When I test on my device (iPhone 4, 4.3.2) it opens the Twitter app when creating the BOOL.

Thanks

share|improve this question

1 Answer

up vote 5 down vote accepted
BOOL canOpenURL = [[UIApplication sharedApplication] canOpenURL:yourURL];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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