我想使用SDWebImage獲取圖像,但它返回了-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);
}
}];
錯誤描述:
操作無法完成。 (NSURLErrorDomain error -1100。)
謝謝@StevenOjo –