如何在iphone中使用彩信音频?

时间:2013-01-21 07:46:54

标签: iphone ios objective-c mms

我在iPhone中对MMS进行了调查,但我没有找到太多关于此的信息,大多数调查结果都与图像有关。我想使用MMS iPhone使用ios sdk发送音频。是否可以执行此操作?我对MMS有以下疑问。

如何使用MMS识别iPhone中的所有iOS SDK音频文件?

如何使用MMSiPhone中播放iOS SDK个文件?

有人可以帮我识别这些东西!

1 个答案:

答案 0 :(得分:3)

多媒体消息服务中的

MMS不适用于iOS中的开发人员。 只有messages.app可以发送MMS,您无法访问messages.app中的任何数据,也无法发送MMS

iOS SDK提供Message UI Framework,可让您发送电子邮件和短信。但短信仅限于SMS


更新:iOS 7现在支持附件。

 - (void)sendAudioFile:(NSURL)audioFilePath {
    if ([MFMessageComposeViewController canSendAttachments] &&
        [MFMessageComposeViewController canSendText] &&
        [MFMessageComposeViewController isSupportedAttachmentUTI:@"com.apple.coreaudio-​format"]) //.caf files
    { 
        NSLog(@"can send");

        MFMessageComposeViewController *message = [[MFMessageComposeViewController alloc] init];
        [message addAttachmentURL:audioFilePath withAlternateFilename:nil]; //.caf file
        message.messageComposeDelegate = self;
        [self presentViewController:message animated:YES completion:nil];
    }
    else {
        NSLog(@"cannot send");
    }
}