在 ios8 中使用 swift 语言发送短信
Posted
技术标签:
【中文标题】在 ios8 中使用 swift 语言发送短信【英文标题】:Sending sms with swift language in ios8 【发布时间】:2014-10-27 22:47:39 【问题描述】:我正在尝试使用 MFMessagingComposeViewController 发送短信
这是swift中的代码:
导入 MessageUI 后
let msg:MFMessageComposeViewController=MFMessageComposeViewController()
msg.recipients=["7236446823423"]
msg.body="txt"
self.presentViewController(msg,animated:true,completion:nil)
我得到一个错误:
libc++abi.dylib 以 NSException 类型的未捕获异常终止
【问题讨论】:
你的项目中是否包含了框架文件? 【参考方案1】:检查 MFMessageComposeViewController 是否可以发送文本canSendText
:
if MFMessageComposeViewController.canSendText()
let msg:MFMessageComposeViewController=MFMessageComposeViewController()
msg.recipients=["7236446823423"]
msg.body="txt"
self.presentViewController(msg,animated:true,completion:nil)
else
NSLog("your device do not support SMS....")
【讨论】:
以上是关于在 ios8 中使用 swift 语言发送短信的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Swift 语言中使用 XMPPStream XMPP 框架发送图像?