打电话发短信

//    NSURL *url = [NSURL URLWithString:@"tel://10010"];  //打电话
    NSURL *url = [NSURL URLWithString:@"sms://10010"];  //发短信
    [[UIApplication sharedApplication] openURL:url];
原文地址:https://www.cnblogs.com/yintingting/p/4690264.html