AWS iOS SDK を使用して S3 からファイルをダウンロードしています。
ファイルは次のようにダウンロードされます。
AWSContentManager *contentManager = [AWSContentManager sharedManager];
AWSContent *content = [contentManager contentWithKey:filename];
[content downloadWithDownloadType:AWSContentDownloadTypeIfNewerExists pinOnCompletion:NO progressBlock:^(AWSContent *content, NSProgress *progress) {
progressBlock(progress);
} completionHandler:^(AWSContent *content, NSData *data, NSError *error) {
if (!error) {
completionHandler(data);
}
else {
completionHandler(nil);
}
}];
ただし、これは毎回ファイルをダウンロードし続け、AWSContentDownloadTypeIfNewerExists 値を無視します。
これは AWS のバグですか、それとも何か不足していますか?