使用系统短信功能问题记录

主要有两个方式:

第一种:使用messageUI的MFMessageComposeViewController

实现此功能,一般使用程序内调用系统。首先将头文件引入

#import

实现代码:

if([MFMessageComposeViewController canSendText]){MFMessageComposeViewController*controller=[[MFMessageComposeViewController alloc]init];controller.recipients=@[@"10086"];//发送短信的号码,数组形式入参controller.navigationBar.tintColor=[UIColor redColor];controller.body=@"body";//此处的body就是短信将要发生的内容controller.messageComposeDelegate=self;[selfpresentViewController:controller animated:YES completion:nil];[[[[controller viewControllers]lastObject]navigationItem]setTitle:@"title"];//修改短信界面标题}else{UIAlertView*alert=[[UIAlertView alloc]initWithTitle:@"提示信息"message:@"该设备不支持短信功能"delegate:nil                                              cancelButtonTitle:@"确定"otherButtonTitles:nil,nil];[alert show];}

如要获取发送状态,遵守代理MFMessageComposeViewControllerDelegate并实现代理方法

-(void)messageComposeViewController:(MFMessageComposeViewController*)controller didFinishWithResult:(MessageComposeResult)result{[selfdismissViewControllerAnimated:YES completion:nil];switch(result){caseMessageComposeResultSent://信息传送成功break;caseMessageComposeResultFailed://信息传送失败break;caseMessageComposeResultCancelled://信息被用户取消传送break;default:break;}}

此方法优点在于

1.发完短信或取消后能直接返回 APP

2.可将多个号码传输到短信页面

缺点在于,代理对象必须是viewController对象,如果是用于分享做为了组建使用,最好使用同一的导航栏,这样就可以设置对象为基础导航栏为代理

第二种.取消或发送后留在短信页面

这个就很简单啦,直接调用 openURL。发完短信或取消后将会到短信列表页,不会直接返APP。但只能把一个号码传输到短信页面

NSString*phoneStr=[NSString stringWithFormat:@"10086"];//发短信的号码NSString*urlStr=[NSString stringWithFormat:@"sms://%@",phoneStr];NSURL*url=[NSURL URLWithString:urlStr];[[UIApplication sharedApplication]openURL:url];

至此,两个需求都分别完成,但是并没有达到产品的要求。经过分析得知,要停留在短信页面,只能用采取第二种方法。所以,接下来需要解决的是怎么才能用第二种方法把短信内容传过去。

观察 openURL 传入的参数sms://手机号码,这种格式于 url 有些相似,url 要拼接多个参数用&,所以可以尝试一下在号码后拼接一个参数。在第一种方法中,短信内容赋值给 body,所以尝试把入参拼成sms://手机号码&body=短信内容。就这样完成需求。

NSString*phoneStr=[NSString stringWithFormat:@"10086"];//发短信的号码NSString*smsContentStr=[NSString stringWithFormat:@"短信内容"];NSString*urlStr=[NSString stringWithFormat:@"sms://%@&body=%@",phoneStr,smsContentStr];NSURL*url=[NSURL URLWithString:urlStr];[[UIApplication sharedApplication]openURL:url];

关于拼参数的方法,并不是所有都是显而易见的,也遇到过很多问题:例如是要&还是用?来拼接;短信内容前是否需要带参数名等等问题,经常很多次尝试最终才得到的结果,深感不易。

之前一直没注意传输中文, 会导致 URL 为 nil的问题, 楼下有人提醒, 特此来修改

NSString*phoneStr=[NSString stringWithFormat:@"10086"];//发短信的号码NSString*smsContentStr=[NSString stringWithFormat:@"短信内容"];NSString*urlStr=[NSString stringWithFormat:@"sms://%@&body=%@",phoneStr,smsContentStr];urlStr=[urlStr stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]];// 对中文进行编码NSURL*url=[NSURL URLWithString:urlStr];if(@available(iOS10.0,*)){[[UIApplication sharedApplication]openURL:url options:@{}completionHandler:nil];}else{[[UIApplication sharedApplication]openURL:url];}

参考:https://www.jianshu.com/p/1e87a9716266

你可能感兴趣的:(使用系统短信功能问题记录)