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が呼び出されません助けてください