• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 使用 sendResourceAtURL 给出 "Unsupported resource type"

[复制链接]
菜鸟教程小白 发表于 2022-12-13 05:21:01 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在尝试使用 sendResourceAtURL 发送我通过 imagePickerController 选择的图像。 我将方法 didFinishPickingMediaWithInfo 中的 URL 获取为

NSURL *refURL = [info objectForKey:UIImagePickerControllerReferenceURL];

但是当我打电话时

[self.mySession sendResourceAtURL:refURL withName"test" toPeer:peerid withCompletionHandler:^(NSError *error){
                if (error)....

我总是收到不支持的资源类型错误。 我相信 url 的构造不正确,我还需要其他东西。 当我在我的包中创建一个带有本地文件的 url 时,它会被很好地传输。 有什么想法吗?

谢谢, 佐伊斯



Best Answer-推荐答案


我使用了 Multipeer Group Chat 示例应用程序中提供的代码,并且效果很好。您首先必须将文件写入您的文档目录,然后发送该 url。

// Don't block the UI when writing the image to documents
dispatch_async(dispatch_get_global_queue(0, 0), ^{
    // We only handle a still image
    UIImage *imageToSave = (UIImage *)[info objectForKey:UIImagePickerControllerOriginalImage];

    // Save the new image to the documents directory
    NSData *pngData = UIImageJPEGRepresentation(imageToSave, 1.0);

    // Create a unique file name
    NSDateFormatter *inFormat = [NSDateFormatter new];
    [inFormat setDateFormat"yyMMdd-HHmmss"];
    NSString *imageName = [NSString stringWithFormat"image-%@.JPG", [inFormat stringFromDate:[NSDate date]]];
    // Create a file path to our documents directory
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *filePath = [[paths objectAtIndex:0] stringByAppendingPathComponent:imageName];
    [pngData writeToFile:filePath atomically:YES]; // Write the file
    // Get a URL for this file resource
    NSURL *imageUrl = [NSURL fileURLWithPath:filePath];

    MCPeerID *peer = self.session.connectedPeers[0];
    [self.session sendResourceAtURL:imageUrl withName:imageName toPeer:peer withCompletionHandler:^(NSError *error) {
        if (error) {
            NSLog(@"Failed to send picture to %@, %@", peer.displayName, error.localizedDescription);
            return;
        }
        NSLog(@"Sent picture to %@", peer.displayName);
        //Clean up the temp file
        NSFileManager *fileManager = [NSFileManager defaultManager];
        [fileManager removeItemAtURL:imageUrl error:nil];
    }];
});

关于ios - 使用 sendResourceAtURL 给出 "Unsupported resource type",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19758980/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap