1
IBOutlet _tableView;

-(IBAction)EditButton{

    NSLog(@"editButtonPressed");
    editing= !editing;
    [_tableView setEditing:editing animated:YES];
   }

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{

    tasklist *task=[items objectAtIndex:indexPath.row];
if(editing){
    TaskListEditorController *editor=[[TaskListEditorController alloc] initWithNibName:@"TaskListEditorController" bundle:nil];

    editor.defaulttext=task.prptext;

    editor.delegate=self;

    [self presentModalViewController:editor animated:YES];

    [editor release];

}else{


task.prpcompleted= !task.prpcompleted;

[tableView reloadData];

}
    [tableView deselectRowAtIndexPath:indexPath animated:YES];

}

私は xcode3.2.6 を試しています。[_tableView setEditing:editing animation:YES]; を入れていないときに呼び出すことができます。編集をクリックしますが、それを配置すると、didselectrowatindexpathが呼び出されません助けてください

4

1 に答える 1

0

テーブルビューの allowSelectionDuringEditing プロパティを YES に設定する必要があります。

_tableView.myTableView.allowsSelectionDuringEditing = YES;

于 2012-12-19T10:47:22.417 に答える