SDWebImage 返回 -1100
SDWebImage returning -1100
我正在尝试使用 SDWebImage 获取图像,但它返回了 -1100 错误。我不明白为什么:
[eventImageView sd_setImageWithURL:[NSURL URLWithString:@"http://farm3.staticflickr.com/2350/2605722927_8cf675a249_b.jpg"] completed:^(UIImage * _Nullable image, NSError * _Nullable error, SDImageCacheType cacheType, NSURL * _Nullable imageURL) {
if (error) {
NSLog(@"error: %@", error.localizedDescription);
}
}];
错误描述:
The operation couldn’t be completed. (NSURLErrorDomain error -1100.)
不是你的问题,是服务器的问题。
-1100
kCFURLErrorFileDoesNotExist
NSURLErrorFileDoesNotExist
文件不存在,文件操作失败
谢谢
检查应用程序传输安全设置,并尝试使用 HTTPS URL。
我正在尝试使用 SDWebImage 获取图像,但它返回了 -1100 错误。我不明白为什么:
[eventImageView sd_setImageWithURL:[NSURL URLWithString:@"http://farm3.staticflickr.com/2350/2605722927_8cf675a249_b.jpg"] completed:^(UIImage * _Nullable image, NSError * _Nullable error, SDImageCacheType cacheType, NSURL * _Nullable imageURL) {
if (error) {
NSLog(@"error: %@", error.localizedDescription);
}
}];
错误描述:
The operation couldn’t be completed. (NSURLErrorDomain error -1100.)
不是你的问题,是服务器的问题。
-1100
kCFURLErrorFileDoesNotExist
NSURLErrorFileDoesNotExist
文件不存在,文件操作失败
谢谢
检查应用程序传输安全设置,并尝试使用 HTTPS URL。