
拨号
void CallPhone(const char* iphone){
NSString *nsIphone =[NSString stringWithFormat:@"tel://%s",iphone];
NSLog(nsIphone);
NSURL* url = [NSURL URLWithString:nsIphone];
NSString *version = [UIDevice currentDevice].systemVersion;
NSLog(version);
if(version.doubleValue>10.0){
[[UIApplication sharedApplication] openURL:url options:@{} completionHandler:nil];
}
else{
[[UIApplication sharedApplication] openURL:url];
}
}
一键加群
拨号
void CallPhone(const char* iphone){
NSString *