0

フィルターやメニューなどを介してネットワーク上の他の場所に保存されているファイルを開く社内の iPad アプリがあります。画像の主な形式は Tiff または PDF であるため、Web を使用してそれらを PDF (TIFF の場合) に変換します。 -サービス。ユーザーは DWG ファイルを含めることを求めており、Ipad に DWG ビューアをダウンロードしました。AFNetworking を使用して DWG ファイルをサーバーから Ipad にダウンロードしたいのですが、うまくいきません。同じコードが PDF ファイルでもうまく機能します。

urlString = [urlString stringByAppendingString:strFile];

NSURL *url = [NSURL URLWithString:urlString];

NSURLRequest *req = [NSURLRequest requestWithURL:url];

AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc]
                                     initWithRequest:req];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,    NSUserDomainMask, YES);
NSString *outputPath = [[paths objectAtIndex:0] stringByAppendingPathComponent:strFile];
operation.outputStream = [NSOutputStream outputStreamToFileAtPath:outputPath append:NO];

[operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
    NSLog(@"Successfully downloaded file to %@", outputPath);

} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
    NSLog(@"Error: %@", error);
}];

[operation start];

ありがとう、

シャイ

4

1 に答える 1