So you want to add drag-and-drop functionality to the items in a UITableView Cell, eh?
Head over to your app’s equivalent of RootViewController.m and check out all the cool stuff commented-out and at your fingertips.
Somewhere in that file you should see
RootViewController.m
/*
// Override to support rearranging the list
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath {
}
*/
Go ahead and [...]
