14

Apple 刚刚拒绝了我提交的一个 PhoneGap 应用程序。我在应用程序中使用 HTML5 localStorage 来保存下载的数据以进行缓存:2.23 应用程序必须遵循 iOS 数据存储指南,否则将被拒绝

我很困惑,因为如果我认为 5.1 中的 localStorage 实际上将数据保存在缓存中,而不是保存在 iCloud [来源]备份的地方。这是我想要的行为 - 我不需要或不希望备份数据。

我错了还是苹果?我可以在 PhoneGap 应用程序中做些什么来保存这些缓存数据而不会违反?

编辑: PhoneGap 1.8.1 如果有帮助的话。

4

3 回答 3

11

事实证明我是对的,而苹果是错的。我确认我将所有内容都正确存储在 /Caches 目录中。他们没有评论我的问题——只是批准了我的应用程序。

于 2012-09-07T17:02:09.480 回答
2

我知道有两件事:

1) 由您的应用程序生成的文件(而不是用户使用您的应用程序的结果),例如用于存储变量值的临时文本文件,那么这些文件必须放在 Library/Cache 而不是 Document 目录中。

2) 您还必须使用“skip-backup”属性标记文件,以告诉 iCloud 不要备份该文件。

我想你可能错过了第 2 步。

我编写了一个简单的 MediaDirectory 类,它可以快速为我提供 Library/Cache 文件夹中文件的路径,还添加了跳过备份属性。

将文件保存到 Libary/Cache 文件夹后,您只需执行以下操作:

[MediaDirectory addSkipBackupAttributeForFile:@"myTextFile.txt"];

这是完整的课程:

// Header File

// ----------------------------------------------------------------------
// This class takes a file name (including extension) and returns
// the path to that file in the Library/Cache folder
// ----------------------------------------------------------------------

#import <Foundation/Foundation.h>

@interface MediaDirectory : NSObject

+(NSString *) mediaPathForFileName:(NSString *) fileName;
+(NSString *) mediaPathForFileName:(NSString *) fileName inSubDirectory:(NSString *) subDirectory;
+ (BOOL)addSkipBackupAttributeToFile:(NSString *) fileName;
+ (BOOL)addSkipBackupAttributeToFile:(NSString *) fileName inSubDirectory:(NSString *) subDirectory;

@end


// Implementation File

#import "MediaDirectory.h"
#include <sys/xattr.h>

@implementation MediaDirectory

+(NSString *) mediaPathForFileName:(NSString *) fileName
{   
    NSArray *directoryPaths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
    NSString *cachesDirectory = [directoryPaths objectAtIndex:0];
    NSString *filePath = [NSString stringWithFormat:@"%@/%@", cachesDirectory, fileName];

    return filePath;
}

// if an image needs to be stored in a sub folder called "images"
+(NSString *) mediaPathForFileName:(NSString *) fileName inSubDirectory:(NSString *) subDirectory
{   
    NSArray *directoryPaths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
    NSString *cachesDirectory = [directoryPaths objectAtIndex:0];
    NSString *filePath = [NSString stringWithFormat:@"%@/%@/%@", cachesDirectory, subDirectory, fileName];

    return filePath;
}

//+ (BOOL)addSkipBackupAttributeToItemAtURL:(NSURL *)URL
+ (BOOL)addSkipBackupAttributeToFile:(NSString *) fileName
{
    const char* filePath = [[self mediaPathForFileName:fileName] fileSystemRepresentation];

    const char* attrName = "com.apple.MobileBackup";
    u_int8_t attrValue = 1;

    int result = setxattr(filePath, attrName, &attrValue, sizeof(attrValue), 0, 0);
    return result == 0;
}

+ (BOOL)addSkipBackupAttributeToFile:(NSString *) fileName inSubDirectory:(NSString *) subDirectory
{
    const char* filePath = [[self mediaPathForFileName:fileName inSubDirectory:subDirectory] fileSystemRepresentation];

    const char* attrName = "com.apple.MobileBackup";
    u_int8_t attrValue = 1;

    int result = setxattr(filePath, attrName, &attrValue, sizeof(attrValue), 0, 0);
    return result == 0;
}

@end
于 2012-09-06T06:10:30.103 回答
1

我刚刚提交的一个phonegap应用也因为同样的原因被苹果拒绝了,我只使用了localstorage。

我重新提交了在我的 config.xml 中设置的以下首选项

<preference name="BackupWebStorage" value="none" />

我了解这将解决问题

于 2014-11-17T16:18:24.577 回答