here is my problem: I have an editButton and editActions for each cell
So I wanted checkboxes instead of red minuses . I've found this block of code:
override func tableView(_ tableView: UITableView, editingStyleForRowAt indexPath: IndexPath) -> UITableViewCellEditingStyle {
// Возвращаем стиль с checkbox'ами, который мне нужен
return UITableViewCellEditingStyle.init(rawValue: 3)!
}
it helped me. BUT!!1 Because of this code, rowActions stoped to appear. When I try to swipe to the left, cells just perform their segues (like here). It is not normal.