gpt4 book ai didi

ios - 错误为 "The operation couldn’ 的 NSData 无法完成。 ( cocoa 错误 256。)”

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:40:27 25 4
gpt4 key购买 nike

<分区>

试图显示从网络服务下载的图像到UIImage,可以得到确切的图像路径(通过URLString)并显示在NSLog。现在的问题是 imageData 正在返回 null 值而不是要返回的值。

错误消息将打印为:

The operation couldn’t be completed. (Cocoa error 256.)

用于检索图像路径的代码如下所述,

    NSString *urlString = [result objectForKey:@"image"];
NSLog(@"url image is %@ \n",urlString);

NSData *imageData = [[NSData alloc] init];

NSError* error = nil;
imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:urlString] options:NSDataReadingUncached error:&error];

if (error)
{
NSLog(@"%@", [error localizedDescription]);
}
else
{
NSLog(@"image data is %@ \n",imageData);
imageview.image = [UIImage imageWithData:imageData];
}

为了在 UIImage 中显示图像,需要做什么。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com