그래서 제가 메인 스크린으로 가기 전에 iOS 앱에서 여러 개의 비디오 파일을 다운로드하고 AFNetworking 2를 사용하고 있습니다. 하나의 파일을 다운로드해야하지만 모든 것이 정상이지만 여러 파일을 다운로드해야 할 때이 오류와 함께 실패 할 경우 항상 동일한 파일이 아닌 것으로 보입니다.AFNetworking 다운로드 루프가 인증을 잃습니다
오류 : 도메인 오류 = com.alamofire.error.serialization.response 코드 = -1011 "요청하지 못했습니다. (401)"UserInfo = 0x7ff943f4fcb0 {NSLocalizedDescription = 요청하지 못했습니다 : 무단 (401), com.alamofire.serialization.response.error.response =
이MainView *mainViewController = [[MainView alloc] init];
NSURLCredential *credential = [NSURLCredential credentialWithUser:AUTH_USERNAME2 password:AUTH_PASSWORD2 persistence:NSURLCredentialPersistenceForSession];
NSFileManager *fileManager = [NSFileManager defaultManager];
[fileManager changeCurrentDirectoryPath:self.topVideoPath];
__block int countVideos = 0;
__block int totalvideos = [videoItems count];
for (int i = 0; i < [videoItems count]; i++){
NSLog(@"dict array : %@" , self.dictArray);
NSMutableDictionary *itemDict = [self.dictArray objectAtIndex:i];
NSURL *url = [NSURL URLWithString:[itemDict objectForKey:@"video"]];
NSString *videoString = [itemDict objectForKey:@"video"];
NSString *specificPath = [[fileManager currentDirectoryPath] stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.dat", [itemDict objectForKey:@"id"]]];
TopItem *item = [videoItems objectAtIndex:i];
if (![videoString isEqualToString:@""]) {
[fileManager changeCurrentDirectoryPath:self.topVideoPath];
NSString *moviePath = [[fileManager currentDirectoryPath] stringByAppendingPathComponent:[NSString stringWithFormat:@"Movie%@.mp4", [itemDict objectForKey:@"id"]]];
NSString *correctMoviePath = [NSString stringWithFormat:@"KyoskSkeleton/TopVideo/Movie%@.mp4", [itemDict objectForKey:@"id"]];
AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:[NSURLRequest requestWithURL:url]];
[operation setCredential:credential];
operation.outputStream = [NSOutputStream outputStreamToFileAtPath:moviePath append:NO];
[operation setDownloadProgressBlock:^(NSUInteger bytesRead, long long totalBytesRead, long long totalBytesExpectedToRead) {
float progress = ((float)totalBytesRead)/totalBytesExpectedToRead;
NSLog(@"The downloading progress : %f", progress);
}];
[operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
countVideos = countVideos + 1;
NSLog(@"specific path : %@", specificPath);
[NSKeyedArchiver archiveRootObject:item toFile:specificPath];
if (countVideos == totalvideos){
mainViewController.topScrollViewContent = self.topScrollViewContent;
if ([self.responseDelegate respondsToSelector:@selector(pushController:)]) {
[self.responseDelegate performSelector:@selector(pushController:) withObject:mainViewController];
}
}
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@"Not Downloaded");
NSLog(@"Error : %@", error);
countVideos = countVideos + 1;
}];
[operation start];
}
}
사람이 잘못 무슨 일이 일어나고 있는지 알고 있나요 :
은이 코드를 사용하고 말?
미리 감사드립니다.