Tag Archives: UITableView Cell

iPhone Hotness of the Day: Baked-in Drag and Drop of UITableView Cell Items

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 [...]

Posted in Code | Also tagged , , , , , | Comments closed