2014-10-27 3 views
1

Я пытаюсь отправить смс с помощью MFMessagingComposeViewControllerОтправка смс с быстрым языком в ios8

это код в скор:

после импорта MessageUI

let msg:MFMessageComposeViewController=MFMessageComposeViewController() 
msg.recipients=["7236446823423"] 
msg.body="txt" 
self.presentViewController(msg,animated:true,completion:nil) 

я получаю сообщение об ошибке:

libC++ abi.dylib завершение с неперехваченным исключением типа NSException

+0

Вы включили рамочный файл в вашем проекте? –

ответ

2

Проверьте 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....") 
     } 
Смежные вопросы