How to control UITableView editing using swipe iphone app?
我正在使用
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 } |