web-dev-qa-db-ja.com

iOSのAFNetworkingでファイル/画像をダウンロードしますか?

私はそれを理解したと思ったが、それを機能させることができない。配列内のすべてのURLで呼び出されるメソッドがあります。このメソッドには、オフラインで使用するためにアプリケーションサポートフォルダーの特定のパスにダウンロードする必要がある画像のURLがあります。しかし、AFNetworkライブラリのメソッドを誤って解釈している可能性があります。私の方法は次のようになります。

- (void) downloadImageInBackground:(NSDictionary *)args{

  @autoreleasepool {

    NSString *photourl = [args objectForKey:@"photoUrl"];
    NSString *articleID = [args objectForKey:@"articleID"];
    NSString *guideName = [args objectForKey:@"guideName"];
    NSNumber *totalNumberOfImages = [args objectForKey:@"totalNumberOfImages"];

    NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:photourl]];

    AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request];
    operation.inputStream = [NSInputStream inputStreamWithURL:[NSURL URLWithString:photourl]];

    [operation setShouldExecuteAsBackgroundTaskWithExpirationHandler:^{
        DLog(@"PROBLEMS_AF");
    }];
    DLog(@"URL_PHOTOURL: %@", photourl);
    DLog(@"indexSet: %@", operation.hasAcceptableStatusCode); 
    [operation  response];

    NSData *data = [args objectForKey:@"data"];

    NSString *path;
    path = [NSMutableString stringWithFormat:@"%@/Library/Application Support/Guides", NSHomeDirectory()];
    path = [path stringByAppendingPathComponent:guideName];
    NSString *guidePath = path;
    path = [path stringByAppendingPathComponent:photourl];

    if ([[NSFileManager defaultManager] fileExistsAtPath:guidePath]){
        [[NSFileManager defaultManager] createFileAtPath:path
                                                contents:data
                                              attributes:nil];
    }

    DLog(@"path: %@", path);
    operation.outputStream = [NSOutputStream outputStreamToFileAtPath:path append:NO];
    [operation start];


    DLog(@"isExecuting: %d",[operation isExecuting]);
    DLog(@"IS_FINISHED: %d",[operation isFinished]);


  }

} 

PhotoURLは、ダウンロードしたい画像への直接リンクです。

このメソッドはすべての画像に対して呼び出されるため、すべてのログが数回呼び出され、正しいようです。

13
Joakim Engstrom

ここでいくつか問題があります。まず、なぜ@autoreleasepoolを使用しているのですか?ここでは必要ないと思います。また、ARCを使用していますか?私の答えの残りのために、私はこれを考慮します。

aFNetworkingにはAFImageRequestOperationというクラスがあるので、これを使用することをお勧めします。まず、インポートします

#import "AFImageRequestOperation.h"

次に、オブジェクトを作成できます

NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:photourl]];
AFImageRequestOperation *operation;
operation = [AFImageRequestOperation imageRequestOperationWithRequest:request 
    imageProcessingBlock:nil 
    cacheName:nil 
    success:^(NSURLRequest *request, NSHTTPURLResponse *response, UIImage *image) {

    } 
    failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error) {
        NSLog(@"%@", [error localizedDescription]);
    }];

これで、成功ブロックで、必要なUIImageを取得できました。そこで、documentsディレクトリを取得する必要があります。コードはiOSデバイスでは機能しません。

// Get dir
NSString *documentsDirectory = nil;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
documentsDirectory = [paths objectAtIndex:0];
NSString *pathString = [NSString stringWithFormat:@"%@/%@",documentsDirectory, guideName];

次に、NSDatas writeToFileを使用できます

// Save Image
NSData *imageData = UIImageJPEGRepresentation(image, 90);
[imageData writeToFile:pathString atomically:YES];

最後に、操作を開始する必要があります

[operation start];

すべて一緒に:

- (void)downloadImageInBackground:(NSDictionary *)args{

    NSString *guideName = [args objectForKey:@"guideName"];
    NSString *photourl = [args objectForKey:@"photoUrl"];

    NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:photourl]];

    AFImageRequestOperation *operation = [AFImageRequestOperation imageRequestOperationWithRequest:request 
        imageProcessingBlock:nil 
        cacheName:nil 
        success:^(NSURLRequest *request, NSHTTPURLResponse *response, UIImage *image) {

            // Get dir
            NSString *documentsDirectory = nil;
            NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
            documentsDirectory = [paths objectAtIndex:0];
            NSString *pathString = [NSString stringWithFormat:@"%@/%@",documentsDirectory, guideName];

            // Save Image
            NSData *imageData = UIImageJPEGRepresentation(image, 90);
            [imageData writeToFile:pathString atomically:YES];

        } 
        failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error) {
            NSLog(@"%@", [error localizedDescription]);
        }];

    [operation start];
}
40
choise

ここでの問題は、操作が保持されないことです。すぐに割り当てが解除されます。

操作をクラスのプロパティにするか、操作キュー(プロパティでもある)に要求を処理させる(推奨)。後者の場合、[operation start]を呼び出さないでください。 AFHTTPClientを使用すると、操作キューも管理されます。

また、リクエスト操作の完了コールバックを登録する必要があります(setCompletionBlockWithSuccess:failure:)。

5
Felix