Iphone中的表行删除

时间:2010-08-03 18:24:41

标签: iphone uitableview

我在iPhone中使用表格编辑。我在我的项目中使用Delegate和Datasource。 问题是当我们点击删除披露时,我没有收到删除按钮。 我是iphone编程的新手。所以请帮助我。 提前谢谢。

1 个答案:

答案 0 :(得分:2)

您需要实施方法

-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath 
{
   return UITableViewCellEditingStyleDelete;
}    

-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath

您还需要确保tblView.editing属性设置为true;