Setting edit mode of uitableview disables row selection
When I set the edit mode of my uitableview by using
[listTableView setEditing:YES];
I am not able to select the table rows anymore. It does not take the control to didSelectRowAtIndexPath
.
When I comment the above line, it is ok.
A开发者_StackOverflow社区ny idea why? I need the editing and selection features.
Thanks.
listTableView.allowsSelectionDuringEditing = YES;
精彩评论