我正在开发一个自定义UITableViewCell,它在Apple上按照iOS 7 Mail App中的单元滑动时具有额外的按钮。看这里: Swipe to Delete and the "More" button (like in Mail app on iOS 7)
要制作自定义UITableViewCell,我需要通过执行以下操作来删除默认删除按钮:
-(BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
return NO;
}
然而,通过这样做,VoiceOver Rotor不再显示“Actions”元素。我无法在VoiceOver转子上添加自定义元素(我只能使用Apple的)。
有没有办法隐藏默认滑动删除按钮但仍然显示VoiceOver转子界面中的“Actions”元素。