MessageComposer中的iOS添加图像和文本

时间:2013-12-05 14:12:35

标签: ios mms

我想在iOS中发送彩信,为此我将使用Message Composer API。 现在我可以通过在正文和图像中添加文本作为附件来发送mms。

但我想发送信息,它将是图像和文字的组合: 例如:  嗨[image]你好吗[图片]。

我怎样才能做到这一点。

1 个答案:

答案 0 :(得分:1)

仅在iOS 7中可以通过MFMessageComposeViewController发送彩信:

首先检查您是否可以使用canSendAttachments方法发送MSS:

if ([MFMessageComposeViewController canSendAttachments]) {
    // YES we can send a MMS
}

最简单的方法是使用addAttachmentURL:withAlternateFilename:将附件附加到您的邮件中。您无法在文本中间显示图像。