Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
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];

}

i am trying on xcode3.2.6 i am able to call when i dont put [_tableView setEditing:editing animated:YES]; on edit click but if i put it didselectrowatindexpath is not called please help

share|improve this question
Frankly I do not understand your question. Please re-phrase it. – Hermann Klecker Dec 19 '12 at 10:45

closed as not a real question by jtbandes, Janak Nirmal, Sam I am, Praveen, Ed Heal Dec 20 '12 at 5:48

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 0 down vote accepted

You need to set the allowsSelectionDuringEditing property of your tableview to YES.

_tableView.myTableView.allowsSelectionDuringEditing = YES;

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.