如何实现编辑和;删除表格单元格中的功能?

时间:2011-10-21 14:03:42

标签: iphone objective-c ios4 uitableview

在我的应用中,

我想实现编辑和;删除表格上的功能。

enter image description here

我该怎么做?

2 个答案:

答案 0 :(得分:2)

UITableViewDataSourceUITableViewDataDelegate

中有多种方法
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath;

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath;
- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath;
- (BOOL)tableView:(UITableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath;
- (void)tableView:(UITableView*)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath;
- (void)tableView:(UITableView*)tableView didEndEditingRowAtIndexPath:(NSIndexPath *)indexPath;

另见文件{{3p>

答案 1 :(得分:2)

按照本教程开始,它还有下载代码。 http://adeem.me/blog/2009/05/29/iphone-sdk-tutorial-add-delete-reorder-uitableview-row/

快乐编码