2019独角兽企业重金招聘Python工程师标准>>>
首先宏定义一个号码:
#define PhoneNumber @"18188888888" /** 宏定义一个号码 */
短信发送的两种方式:
方式一
使用系统底层的发送:
/** 底层发送方式 *//** 缺点: 无法自定义短信内容,无法返回原来应用; */NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"sms://%@",PhoneNumber]];[[UIApplication sharedApplication] openURL:url];
方式二
使用第三方框架发送,需要导入MessageUI头文件,并遵守协议 <MFMessageComposeViewControllerDelegate>
#import
/** 自定义一个发送短信的方法 */
- (void) sendMsgWithPhoneNumber:(NSArray *)phone title: (NSString *)title body: (NSString *)body
{if ([MFMessageComposeViewController canSendText]){NSLog(&#64;"...");MFMessageComposeViewController *msgComposeVC &#61; [[MFMessageComposeViewController alloc] init];msgComposeVC.recipients &#61; phone;msgComposeVC.navigationBar.tintColor &#61; [UIColor redColor];msgComposeVC.body &#61; body;msgComposeVC.messageComposeDelegate &#61; self;msgComposeVC.title &#61; title;[self presentViewController:msgComposeVC animated:YES completion:nil];}else{UIAlertView *alert &#61; [[UIAlertView alloc] initWithTitle: &#64;"提示信息"message: &#64;"该设备不支持短信发送"delegate: nilcancelButtonTitle: &#64;"确定"otherButtonTitles: nil, nil];[alert show];}
}
调用自定义的方法发送消息:
/** 第三方库发送方式,弥补了方式一的各种缺点 */[self sendMsgWithPhoneNumber:[NSArray arrayWithObjects:PhoneNumber,nil] title:&#64;"test" body:&#64;"This is a test to send message"];
发短信第三方框架的协议:
#pragma mark -MFMessageComposeViewControllerDelegate
- (void)messageComposeViewController:(MFMessageComposeViewController *)controller didFinishWithResult:(MessageComposeResult)result
{[self dismissViewControllerAnimated:YES completion:nil];switch (result){case MessageComposeResultSent:/** 消息发送成功 */break;case MessageComposeResultFailed:/** 消息发送失败 */break;case MessageComposeResultCancelled:/** 用户取消发送消息 */break;}
}
拨打电话的三种方式:
/** 方式一: 底层最简单的拨打电话 */
/** 缺点:没有提醒,当方法触发后就直接拨打,无法返回上一个界面 */
- (void) callTestOne
{NSURL *url &#61; [NSURL URLWithString:[NSString stringWithFormat:&#64;"tel://%&#64;",PhoneNumber]];[[UIApplication sharedApplication] openURL:url];
}/** 方式二: 苹果私有协议 */
/** 有提醒,可以返回上一个界面,不过该方法上线会被拒绝,可以用于开发越狱软件 */
- (void) callTestTwo
{NSURL *url &#61; [NSURL URLWithString:[NSString stringWithFormat:&#64;"telprompt://%&#64;",PhoneNumber]];[[UIApplication sharedApplication] openURL: url];
}/** 方式三: 加载 web请求 */
/** 该方法是开发中最常用的方法,有提醒,可以返回上一个界面,就是代码多了点而已 */
- (void) callTestThree
{NSURL *url &#61; [NSURL URLWithString:[NSString stringWithFormat:&#64;"tel://%&#64;",PhoneNumber]];if (_webView &#61;&#61; nil){_webView &#61; [[UIWebView alloc] initWithFrame:CGRectZero];}NSURLRequest *request &#61; [NSURLRequest requestWithURL:url];[_webView loadRequest:request];
}