我正在使用自定义UITableView,当我为每个单元格打开VoiceOver和Rotor的操作时,会显示一条消息:“可用操作”,其中一个是删除,我不想添加 .

我读过:http://ronnqvi.st/swipe-to-delete-for-voiceover/https://gist.github.com/d-ronnqvist/3584ccf3379f9c318e4f,解释了如何添加自定义的一个 .

基于此我添加: - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath { return NO; }

但是当VoiceOver打开并且Rotor设置为Actions时,内置的“删除”操作将被宣布 .

还有什么需要实施的吗?谢谢