Tag Archives: sdk

Making UITableViews Suck Way Less

Usually I wouldn’t get involved in arguments about which configurations framework designers choose to make default, but in the case of the iPhone’s UITableView, it’s pretty apparent the default options are going to lead you in circles of UI Case Study research and aesthetic ponderings before you realize a flip of a switch will solve [...]

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

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