SDWebImage 로 딩 사진 은 문제 가 표시 되 지 않 습 니 다. 상상 하기 어 려 운 BUG 입 니 다.
2496 단어 iOS 갱 -- 버그
[self.headImage sd_setImageWithURL:[NSURL URLWithString:_model.EAImg] placeholderImage:[UIImage imageNamed:@"gd"]];
얼마나 정상 적 인 비동기 로 그림 을 불 러 오 면 그 는 비정상적 으로 표 시 됩 니 다. placeholder Image 만 표시 하고 다른 페이지 는 정상적으로 표시 할 수 있 습 니 다. 차이 점 은 바로 그림 의 URL 입 니 다.이 URL 은 http 이 고 다른 URL 은 HTTPS 입 니 다.URL 문제 라 고 자 료 를 찾 아 봤 습 니 다.해결 방법 도 있다.
[self.headImage sd_setImageWithURL:[NSURL URLWithString:_model.EAImg] placeholderImage:[UIImage imageNamed:@"gd"] completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {
// error
}];
error:
1. Error Domain = NSURLErrorDomain Code = 403 "작업 이 완료 되 지 않 았 습 니 다. (NSURLErrorDomain error 403.)"
//SDWebImage BUG
NSString *userAgent = @"";
userAgent = [NSString stringWithFormat:@"%@/%@ (%@; iOS %@; Scale/%0.2f)", [[[NSBundle mainBundle] infoDictionary] objectForKey:(__bridge NSString *)kCFBundleExecutableKey] ?: [[[NSBundle mainBundle] infoDictionary] objectForKey:(__bridge NSString *)kCFBundleIdentifierKey], [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"] ?: [[[NSBundle mainBundle] infoDictionary] objectForKey:(__bridge NSString *)kCFBundleVersionKey], [[UIDevice currentDevice] model], [[UIDevice currentDevice] systemVersion], [[UIScreen mainScreen] scale]];
if (userAgent) {
if (![userAgent canBeConvertedToEncoding:NSASCIIStringEncoding]) {
NSMutableString *mutableUserAgent = [userAgent mutableCopy];
if (CFStringTransform((__bridge CFMutableStringRef)(mutableUserAgent), NULL, (__bridge CFStringRef)@"Any-Latin; Latin-ASCII; [:^ASCII:] Remove", false)) {
userAgent = mutableUserAgent;
}
}
[[SDWebImageDownloader sharedDownloader] setValue:userAgent forHTTPHeaderField:@"User-Agent"];
}
[self.headImage sd_setImageWithURL:[NSURL URLWithString:_model.EAImg] placeholderImage:[UIImage imageNamed:@"gd"]];
2. Error Domain = NSURLErrorDomain Code = 406 "작업 이 완료 되 지 않 았 습 니 다. (NSURLErrorDomain error 406.)"
/ / 요청 하기 전에 이 말 을 더 하 세 요.
[SDWebImageDownloader.sharedDownloader setValue:@"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8"
forHTTPHeaderField:@"Accept"];