Created
October 1, 2014 10:06
-
-
Save NghiaTranUIT/cb25ee380ac81a4458d7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NSString *customURL = @"facebook://"; | |
if ([[UIApplication sharedApplication] | |
canOpenURL:[NSURL URLWithString:customURL]]) | |
{ | |
// App fb có cài | |
return YES; | |
} | |
else | |
{ | |
// App fb ko cài | |
return NO; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment