在 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 框架发送图像?

XCode6/Swift:发送到实例的无法识别的选择器

无法在 iOS8 上设置交互式推送通知

如何使用 swift 在 url 中发送 Json 作为参数

iOS8开发~Swift入门

swift语言IOS8开发战记19 UIImagePickerController