Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个NSMutableArray,我改变了它的内容的顺序。如何在不使用关系的情况下将其顺序保存在核心数据中,还是应该使用NSUserDefaults?
NSMutableArray
NSUserDefaults
为什么不在您想要保留其顺序时使用第二个数组作为第一个数组的副本?它不必是可变数组 - 使用[myArray immutableCopy]
[myArray immutableCopy]
如果出于内存原因不想复制数组中的所有项目,也许将位置存储为 NSInteger?让第一个数组包含项目,第二个数组包含第一个数组的索引。