Revision: 28870
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at July 15, 2010 05:08 by rabc
Initial Code
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
[self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
}
Initial URL
Initial Description
Just add this delegate method to enable the row delete.
Initial Title
Delete a table's row
Initial Tags
iphone
Initial Language
Objective C