MKNetworkKitを使用して、MKNetworkEngineサブクラスに次のコードを含むファイルをダウンロードしています。
- (MKNetworkOperation *)downloadFileFromURL:(NSString *)urlString toFile:(NSString *)filePathString
{
MKNetworkOperation *op = [self operationWithURLString:urlString params:nil httpMethod:@"GET"];
[op addDownloadStream:[NSOutputStream outputStreamToFileAtPath:filePathString append:YES]];
[self enqueueOperation:op];
return op;
}
ダウンロードファイルの合計サイズまたはダウンロード速度を表示する方法に関するヒントはありますか?