设置uitableview的编辑模式禁用行选择
当我使用设置 uitableview 的编辑模式时,
[listTableView setEditing:YES];
我无法再选择表行。它不会将控制权交给didSelectRowAtIndexPath
。
当我评论上面的行时,就可以了。
知道为什么吗?我需要编辑和选择功能。
谢谢。
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.
Any idea why? I need the editing and selection features.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
listTableView.allowsSelectionDuringEditing = YES;
listTableView.allowsSelectionDuringEditing = YES;