我正在尝试使用持久存储存储图像的 NSMutableArray,但它没有存储它
这是我的代码
[imagingList addObject:image ]; //image is of type UIImage
imagingHistory=[NSUserDefaults standardUserDefaults];
[imagingHistory setObject:imagingList forKey:@"imaging history" ];
在我看来确实加载了我写的
imagingList = [[NSUserDefaults standardUserDefaults] mutableArrayValueForKey:@"imaging history" ];
当我重新加载应用程序时,对象列表设置回零
我错过了什么吗?