调用tel打电话代码 Life is but a span.
NSString *callString = @"10086";//打给10086
NSString *URLString = [@"tel://" stringByAppendingString:callString];
NSURL *URL = [NSURL URLWithString:URLString];
[[UIApplication sharedApplication] openURL:URL];
blog comments powered by Disqus