XLForm
XLForm copied to clipboard
Notification when rows are reordered?
I am using a section with XLFormSectionOptionCanReorder and need to get notified when the user reorders rows. How can I do that? formRowDescriptorValueHasChanged isn't called, and neither are formRowHasBeenAdded or formRowHasBeenRemoved. What am I missing?
You could try overriding - (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath
in your XLFormViewController
. Don't forget to call super or it won't work.