您知道是否可以在Parse Config中存储PFFile数组?我还没有在Parse documentation找到它。
我想存储背景图片&我的应用中每个类别的图标。目前我有15个类别,我希望能够添加/删除/编辑这些图像,而无需更改我的应用程序上的任何内容。 到目前为止,我发现这样做的唯一方法是创建一个字符串数组,其中包含检索这些PFFile的键。
以下是代码:
NSArray *kCategories = [config objectForKey:@"Categories"];
for (NSString *key in kCategories) {
NSString *backgroundKey = [NSString stringWithFormat:@"background_%@", key];
NSString *iconKey = [NSString stringWithFormat:@"icon_%@", key];
PFFile *background = [config objectForKey:backgroundKey ];
PFFile *icon = [config objectForKey:iconKey ];
// Do something with it
}
它有效,但我仍然需要在我的仪表板上单独创建30个PFFile,因为我有15个类别(背景+图标),我认为它非常脏。
我很高兴听到任何建议。