Core Data 属性をインデックス化する必要があるのはどのような場合ですか?
並べ替えるときは?
fetchRequest.sortDescriptors = [NSArray arrayWithObject:[NSSortDescriptor sortDescriptorWithKey:@"name" ascending:YES selector:@selector(localizedStandardCompare:)]];
フィルタリングしているときは?
fetchRequest.predicate = [NSPredicate predicateWithFormat: @"name BEGINSWITH[cd] %@", searchString];
他のケースは?