Saturday, June 8, 2013

UITableViewDataSource tableView moveRowAtIndexPath toIndexPath example in Objective C (iOS).


UITableViewDataSource tableView moveRowAtIndexPath toIndexPath

Tells the data source to move a row at a specific location in the table view to another location.

- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath

Parameters
tableView
The table-view object requesting this action.
fromIndexPath
An index path locating the row to be moved in tableView.
toIndexPath
An index path locating the row in tableView that is the destination of the move.

Discussion of [UITableViewDataSource tableView moveRowAtIndexPath toIndexPath]
The UITableView object sends this message to the data source when the user presses the reorder control in fromRow.

UITableViewDataSource tableView moveRowAtIndexPath toIndexPath example.
In TableView Delegate method do following with your myStringArray (as TableView DataSource)

 - (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath
 {  
   NSString *name = [[myStringsArray objectAtIndex:sourceIndexPath.row] retain];
   [myStringsArray removeObjectAtIndex:sourceIndexPath.row];
   [myStringsArray insertObject:name atIndex:destinationIndexPath.row];
   [name release];
 }
And Add two new Delegate in your .h file like this

- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
{   
  return YES;
}

- (NSIndexPath *)tableView:(UITableView *)tableView targetIndexPathForMoveFromRowAtIndexPath:(NSIndexPath *)sourceIndexPath
   toProposedIndexPath:(NSIndexPath *)proposedDestinationIndexPath
{
  return proposedDestinationIndexPath;
}

Example of [UITableViewDataSource tableView moveRowAtIndexPath toIndexPath].
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath {
    NSArray * fetchedObjects = [self.fetchedResultsController fetchedObjects];
    if (fetchedObjects == nil)
     return;

    NSUInteger fromRow = fromIndexPath.row + NUM_HEADER_SECTION_ROWS;
    NSUInteger toRow = toIndexPath.row + NUM_HEADER_SECTION_ROWS;

    NSInteger start = fromRow;
    NSInteger end = toRow;
    NSInteger i = 0;
    LinkObj *link = nil;

    if (toRow < start)
     start = toRow;
    if (fromRow > end)
     end = fromRow;

    @try {

     for (i = start; i <= end; i++) {
     link = [fetchedObjects objectAtIndex:i]; //
     //debug_NSLog(@"Before: %@", link);

     if (i == fromRow) // it's our initial cell, just set it to our final destination
     link.order = [NSNumber numberWithInt:(toRow-NUM_HEADER_SECTION_ROWS)];
     else if (fromRow < toRow)
     link.order = [NSNumber numberWithInt:(i-1-NUM_HEADER_SECTION_ROWS)]; // it moved forward, shift back
     else // if (fromIndexPath.row > toIndexPath.row)
     link.order = [NSNumber numberWithInt:(i+1-NUM_HEADER_SECTION_ROWS)]; // it moved backward, shift forward
     //debug_NSLog(@"After: %@", link);
     }
    }
    @catch (NSException * e) {
     debug_NSLog(@"Failure in moveRowAtIndexPath, name=%@ reason=%@", e.name, e.reason);
    }
}

UITableViewDataSource tableView moveRowAtIndexPath toIndexPath example.
- (void)tableView:(UITableView *)tableView
moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath
      toIndexPath:(NSIndexPath *)destinationIndexPath;

  NSMutableArray *things = [[fetchedResultsController fetchedObjects] mutableCopy];

  // Grab the item we're moving.
  NSManagedObject *thing = [[self fetchedResultsController] objectAtIndexPath:sourceIndexPath];

  // Remove the object we're moving from the array.
  [things removeObject:thing];
  // Now re-insert it at the destination.
  [things insertObject:thing atIndex:[destinationIndexPath row]];

  // All of the objects are now in their correct order. Update each
  // object's displayOrder field by iterating through the array.
  int i = 0;
  for (NSManagedObject *mo in things)
  {
    [mo setValue:[NSNumber numberWithInt:i++] forKey:@"displayOrder"];
  }

  [things release], things = nil;

  [managedObjectContext save:nil];
}

End of UITableViewDataSource tableView moveRowAtIndexPath toIndexPath example article.