単純なエンティティ、名前のリスト (配列から) に追加しています。しかし、エンティティを保存する前に、それらをソートしたいと思います。誰かが私にこれを行う方法を教えてくれるほど親切でしょうか?
取得したデータをソートする方法を見てきましたが、これを行う方法がわかりません。書かれた例は大歓迎です。どうもありがとう。
NSManagedObjectContext *context = [self managedObjectContext];
NSString *myTempString;
for (databaseMakerVC *aName in peoplesNames.theArray) {
myTempString = [[NSString alloc] initWithFormat:@"%@", aName];
peoplesNamesObject *newObject = [NSEntityDescription
insertNewObjectForEntityForName:@"peoplesNamesObject"
inManagedObjectContext:context];
newObject.aName = myTempString;
}
// *** Do the sorting here!? ***
// Save the context
NSError *error = nil;
if (![context save:&error]) {
NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
}