vote up 0 vote down star

I am using CoreData for my iPhone app, but CoreData doesn't provide an automatic way of allowing you to reorder the records. I thought of using another column to store the order info, but using contiguous numbers for ordering index has a problem. if I am dealing with lots of data, reordering a record potentially involves updating a lot of records on the ordering info (it's sorta like changing the order of an array element)

What's the best way to implement an efficient ordering scheme?

flag

43% accept rate

3 Answers

vote up 0 vote down

Try having a look at the Core Data tutorial for iPhone here. One of the sections there talk about sorting (using NSSortDescriptor).

You may also find the Core Data basics page to be useful.

link|flag
It's not sorting though, it's re-ordering. Sorting is easy, but re-ordering involves potentially lots of updates unless I use a double linked list approach, which I am not sure how to translate to CoreData. – Boon Jul 3 at 6:28
Is there a reason you don't want to re-query with a new Sort instruction? It's accessing local data anyway, so it's not like it's a big performance hit. – Timothy Walters Jul 13 at 1:46
It's really not about avoid Sort. The main question is, how do I implement ordering in the first place? If I add order index into the schema, I run into the situation of having to do a lot of recalculation when I re-order a row. Just imagine this with re-ordering an array and you will see what I mean -- when you move an array element to another position, everything after it has to be moved as well. – Boon Jul 17 at 21:58
vote up 0 vote down

I have this question as well. I have a tableview populated with a NSFetchedResultsController. Its easy enough to allow the user to reorder the table elemenents, but how to save this back to the coredata store? So next time the app starts it appears in the new order.

I was hoping for some magic, but I guess I'll revert to the old method of just having an Order Property in the Model, then manually maintain the Order as items are moved up or down. Would be great if this was built into Core Data since it does so much already.

link|flag
vote up 0 vote down

I finally gave up on FetchController in edit mode since I need to reorder my table cells as well. I'd like to see an example of it working. Instead I kept with having a mutablearray being the current view of the table, and also keeping the CoreData orderItem atrribute consistent.

NSUInteger fromRow = [fromIndexPath row]; 
NSUInteger toRow = [toIndexPath row]; 



 if (fromRow != toRow) {

	// array up to date
	id object = [[eventsArray objectAtIndex:fromRow] retain]; 
	[eventsArray removeObjectAtIndex:fromRow]; 
	[eventsArray insertObject:object atIndex:toRow]; 
	[object release]; 

	NSFetchRequest *fetchRequestFrom = [[NSFetchRequest alloc] init];
	NSEntityDescription *entityFrom = [NSEntityDescription entityForName:@"Lister" inManagedObjectContext:managedObjectContext];

	[fetchRequestFrom setEntity:entityFrom];

	NSPredicate *predicate;	
	if (fromRow < toRow) predicate = [NSPredicate predicateWithFormat:@"itemOrder >= %d AND itemOrder <= %d", fromRow, toRow];	
	else predicate = [NSPredicate predicateWithFormat:@"itemOrder <= %d AND itemOrder >= %d", fromRow, toRow];							
	[fetchRequestFrom setPredicate:predicate];

	NSError *error;
	NSArray *fetchedObjectsFrom = [managedObjectContext executeFetchRequest:fetchRequestFrom error:&error];
	[fetchRequestFrom release];	

	if (fetchedObjectsFrom != nil) { 
		for ( Lister* lister in fetchedObjectsFrom ) {

			if ([[lister itemOrder] integerValue] == fromRow) { // the item that moved
				NSNumber *orderNumber = [[NSNumber alloc] initWithInteger:toRow];				
				[lister setItemOrder:orderNumber];
				[orderNumber release];
			} else { 
				NSInteger orderNewInt;
				if (fromRow < toRow) { 
					orderNewInt = [[lister itemOrder] integerValue] -1; 
				} else { 
					orderNewInt = [[lister itemOrder] integerValue] +1;	
				}
				NSNumber *orderNumber = [[NSNumber alloc] initWithInteger:orderNewInt];
				[lister setItemOrder:orderNumber];
				[orderNumber release];
			}

		}

		NSError *error;
		if (![managedObjectContext save:&error]) {
			NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
			exit(-1);  // Fail
		}			

	}									

}

If anyone has a solution using fetchController please post it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.