我想在iOS中发送彩信,为此我将使用Message Composer API。 现在我可以通过在正文和图像中添加文本作为附件来发送mms。
但我想发送信息,它将是图像和文字的组合: 例如: 嗨[image]你好吗[图片]。
我怎样才能做到这一点。
答案 0 :(得分:1)
仅在iOS 7中可以通过MFMessageComposeViewController
发送彩信:
首先检查您是否可以使用canSendAttachments
方法发送MSS:
if ([MFMessageComposeViewController canSendAttachments]) {
// YES we can send a MMS
}
最简单的方法是使用addAttachmentURL:withAlternateFilename:
将附件附加到您的邮件中。您无法在文本中间显示图像。