こんにちは。きんくまです。
個人的メモです。すんません。
CoreDataを使って、手動で並び替えをしたかったので調べてました。
Matt Long さんが書いている記事が参考になります。
>> RE-ORDERING NSFETCHEDRESULTSCONTROLLER
ただ、このままだと自分の方だとうまくいかなかったので、調整しました。
並び替えをしたいEntityのAttributesにdisplayOrderを追加。Integer32にしといた。
fetchedResultsControllerをつくるときにdisplayOrderでソート
例えば、Xcodeのテンプレートからできるやつでやると
- (NSFetchedResultsController *)fetchedResultsController { if (_fetchedResultsController != nil) { return _fetchedResultsController; } NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init]; // Edit the entity name as appropriate. NSEntityDescription *entity = [NSEntityDescription entityForName:@"Event" inManagedObjectContext:self.managedObjectContext]; [fetchRequest setEntity:entity]; // Set the batch size to a suitable number. [fetchRequest setFetchBatchSize:20]; // Edit the sort key as appropriate. NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"displayOrder" ascending:YES]; NSArray *sortDescriptors = @[sortDescriptor]; [fetchRequest setSortDescriptors:sortDescriptors]; // Edit the section name key path and cache name if appropriate. // nil for section name key path means "no sections". NSFetchedResultsController *aFetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest managedObjectContext:self.managedObjectContext sectionNameKeyPath:nil cacheName:nil]; aFetchedResultsController.delegate = self; self.fetchedResultsController = aFetchedResultsController; NSError *error = nil; if (![self.fetchedResultsController performFetch:&error]) { // Replace this implementation with code to handle the error appropriately. // abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development. NSLog(@"Unresolved error %@, %@", error, [error userInfo]); abort(); } return _fetchedResultsController; }
という感じ。さらにこいつも追加しておく
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath { return YES; }
それで、- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPathのところを設定すればOKなんだけど、こいつの挙動について
調べてみた。カメラでとりましたです。
この挙動にそって、各NSManagedObjectのdisplayOrderを再設定してあげれば大丈夫なはず。
今回このロジックのところだけ考えましたです。
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath { NSInteger minRowIdx, maxRowIdx; BOOL isMoveDirectionSmallToLarge; if(sourceIndexPath.row == destinationIndexPath.row){ return; }else if(sourceIndexPath.row < destinationIndexPath.row){ minRowIdx = sourceIndexPath.row; maxRowIdx = destinationIndexPath.row; isMoveDirectionSmallToLarge = YES; }else{ minRowIdx = destinationIndexPath.row; maxRowIdx = sourceIndexPath.row; isMoveDirectionSmallToLarge = NO; } for(NSInteger i = minRowIdx; i <= maxRowIdx; i++){ NSManagedObject *managedObj = [self.fetchedResultsController objectAtIndexPath:[NSIndexPath indexPathForRow:i inSection:0]]; NSNumber *displayOrder = [managedObj valueForKey:@"displayOrder"]; NSInteger newOrder; if(i == sourceIndexPath.row){ newOrder = destinationIndexPath.row; }else if(isMoveDirectionSmallToLarge){ newOrder = [displayOrder integerValue] - 1; }else{ newOrder = [displayOrder integerValue] + 1; } [managedObj setValue:@(newOrder) forKey:@"displayOrder"]; } NSError *error = nil; if (![_managedObjectContext save:&error]) { NSLog(@"Unresolved error %@, %@", error, [error userInfo]); } // NSLog(@"source %d, destination %d", sourceIndexPath.row, destinationIndexPath.row); }
■ 自作iPhoneアプリ 好評発売中!
・フォルメモ - シンプルなフォルダつきメモ帳
・ジッピー電卓 - 消費税や割引もサクサク計算!
■ LINEスタンプ作りました!
毎日使える。とぼけたウサギ