我想在iOS7上将图像附加到彩信。我写了以下代码:

    MFMessageComposeViewController *messageController = [[MFMessageComposeViewController alloc] init];
    messageController.messageComposeDelegate = self;

    NSData *imgData = [NSData dataWithContentsOfFile:@"blablabla"];
    BOOL didAttachImage = [messageController addAttachmentData:imgData typeIdentifier:@"public.data" filename:@"image"];

    if (didAttachImage)
    {
        // Present message view controller on screen
        [self presentViewController:messageController animated:YES completion:nil];
    }
    else
    {
        UIAlertView *warningAlert = [[UIAlertView alloc] initWithTitle:@"Error"
                                                               message:@"Failed to attach image"
                                                              delegate:nil
                                                     cancelButtonTitle:@"OK"
                                                     otherButtonTitles:nil];
        [warningAlert show];
        return;
    }

问题是当显示SMS屏幕时,它无法识别图像,也无法发送图像。我看到这样的事情:

我相信这与我发送的imgData或typeIdentifier都有关系。

注意:我尝试了几乎所有可能的typeIdentifiers:
@“public.data”,@“public.image”,@“public.item”等。没有任何作用。

有人可以帮我吗?您正在使用的typeIdentifier是什么?我正在iPhone 5,iOS 7.0.2上进行测试。

谢谢。

解决方案:

按照Greg的指示,这解决了我的问题:将文件名设置为@“image.png”,并将typeIdentifier设置为kUTTypePNG。
[messageController addAttachmentData:imgData typeIdentifier:(NSString *)kUTTypePNG filename:@"image.png"];

谢谢格雷格。

最佳答案

MFMessageComposeViewController希望附件具有您要上传的图像类型的正确扩展名。我通过测试PNG文件以及添加附件数据的以下变体进行了验证:

[messageController addAttachmentData:imgData typeIdentifier:@"public.data" filename:@"image"];
[messageController addAttachmentData:imgData typeIdentifier:@"public.data" filename:@"image.abc"];
[messageController addAttachmentData:imgData typeIdentifier:@"public.data" filename:@"image.png"];

只有最后一个选项有效。我不需要更改typeIdentifier,尽管选择与数据类型匹配的UTI可能很有意义。

可在此处找到UTI的完整列表:System-Declared Uniform Type Identifiers(感谢@iWasRobbed!)

关于ios - MFMessageComposeViewController iOS7 addAttachmentData :typeIdentifier:filename: not working,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19170516/

10-09 02:05