如何为自定义UITableView禁用默认辅助功能操作

时间:2017-04-27 19:19:21

标签: objective-c uitableview accessibility uiaccessibility

我使用自定义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时,内置"删除"行动宣布。

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

0 个答案:

没有答案