删除表视图细胞在左侧

问题描述:

如何删除表视图的单元格删除键无冲默认在左侧的删除按钮(peforming上anoher按钮删除操作),所以任何一个可以帮助我删除表视图细胞在左侧

[listTableView beginUpdates]; 
[listTableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:[NSIndexPath indexPathForRow:rowNumber inSection:0]] 
        withRowAnimation:UITableViewRowAnimationLeft]; // there are a few other animations, check out the enum 
// Remove the cell's contents from your data source, for example: 
// [contentsArray removeObjectAtIndex:rowNumber]; 
[listTableView endUpdates]; 
+0

感谢它为我工作 – dev 2012-02-09 07:52:17