我在iPhone中对MMS
进行了调查,但我没有找到太多关于此的信息,大多数调查结果都与图像有关。我想使用MMS
iPhone
使用ios sdk
发送音频。是否可以执行此操作?我对MMS
有以下疑问。
如何使用MMS
识别iPhone
中的所有iOS SDK
音频文件?
如何使用MMS
在iPhone
中播放iOS SDK
个文件?
有人可以帮我识别这些东西!
答案 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");
}
}