- (void)sortMyArrayAndSave {
NSSortDescriptor *dateDescriptor = [NSSortDescriptor
sortDescriptorWithKey:@"somekeydescriptor"
ascending:NO];
NSArray *sortDescriptors = [NSArray arrayWithObject:dateDescriptor];
_myarray = [[_myarray
sortedArrayUsingDescriptors:sortDescriptors] mutableCopy];
[NSKeyedArchiver archiveRootObject:_myarray
toFile:[self returnFilePathForType:@"myArray"]];
}
我可以安全地假设 排序后会{strong> 保存_myarray
吗?
答案 0 :(得分:0)
是的,方法是在同一个线程上按顺序执行的,所以不应该有任何问题。