-1

我的应用程序中有设置可以限制可以为应用程序下载的 PDF 大小。

当已下载的 PDF 大小超过该大小时,部分 PDF 将被删除。

我下载 PDF 并将其存储到documents文件夹中。

然后,我的应用程序被拒绝,因为不遵循此指南。据我所知,我仍然可以将 PDF 文件下载到documents文件夹,但可以使用NSURLIsExcludedFromBackupKey.

所以我的问题是,NSURLIsExcludedFromBackupKey存储PDF时是否可以,因此它不会再次被Apple拒绝?

4

1 回答 1

1

我曾经有一个应用程序出于同样的原因被拒绝。在将下载的文件排除在备份之外后,它被批准了。为了设置该属性,我使用以下方法:

// We do not want to backup this file to iCloud
+ (BOOL)addSkipBackupAttributeToItemAtURL:(NSURL *)URL {
    const char* filePath = [[URL path] fileSystemRepresentation];
    const char* attrName = "com.apple.MobileBackup";
    if (&NSURLIsExcludedFromBackupKey == nil) {
        // iOS 5.0.1 and lower
        u_int8_t attrValue = 1;
        int result = setxattr(filePath, attrName, &attrValue, sizeof(attrValue), 0, 0);
        return result == 0;
    } else {
        // First try and remove the extended attribute if it is present
        int result = getxattr(filePath, attrName, NULL, sizeof(u_int8_t), 0, 0);
        if (result != -1) {
            // The attribute exists, we need to remove it
            int removeResult = removexattr(filePath, attrName, 0);
            if (removeResult == 0) {
                NSLog(@"Removed extended attribute on file %@", URL);
            }
        }

        // Set the new key
        return [URL setResourceValue:[NSNumber numberWithBool:YES] forKey:NSURLIsExcludedFromBackupKey error:nil];
    }
}

您提到使用缓存不是选项,因为您无法控制文件是否保留在缓存中。您可以通过使用自定义缓存来解决这个问题。如果您想查看示例,请查看:https ://github.com/evermeer/EVURLCache

于 2013-02-22T07:15:03.440 回答