Skip to content

Instantly share code, notes, and snippets.

@zhaozzq
Last active July 10, 2017 06:48
Show Gist options
  • Save zhaozzq/1c360c26eceaacaba6bc16d4cd53151f to your computer and use it in GitHub Desktop.
Save zhaozzq/1c360c26eceaacaba6bc16d4cd53151f to your computer and use it in GitHub Desktop.
Generated by Xgist (https://github.com/Bunn/Xgist) at 2017年7月10日 下午2:45:32
+ (void)callNumber:(NSString *)number
{
NSURL *tel = [NSURL URLWithString:[NSString stringWithFormat:@"tel://%@",number]];
if (OSLeastIOS10) {
[[UIApplication sharedApplication] openURL:tel options:@{} completionHandler:nil];
}else{
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
[[UIApplication sharedApplication] openURL:tel];
#pragma clang diagnostic pop
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment