关于ios:如何使用swipe iphone app控制UITableView编辑?

How to control UITableView editing using swipe iphone app?

我正在使用 UITableView 在 iPhone 应用程序中工作。我在 UIViewController 子视图 UITableView 中添加了编辑选项。当用户 swipe the screen the Delete button is showing 在这种情况下,我已将 barbutton 项目 \\'Edit\\' 更改为 \\'Done\\'。在这种情况下,我已从代表下方跟踪控制,

1
2
- (UITableViewCellEditingStyle)tableView:(UITableView *)aTableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
-(void) tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath

但是当用户再次滑动视图时,"删除"按钮被隐藏,但我无法触发控件。这样我就不能将 barbutton 项目 "Done" 更改为 "Edit"。你能帮我解决这个问题吗?我可以在哪里触发滑动控件来隐藏"删除"选项?提前致谢。


这行得通吗?:

1
2
3
4
- (void)tableView:(UITableView *)tableView didEndEditingRowAtIndexPath:(NSIndexPath *)indexPath
{
    // update button title here
}