tableview trailingSwipeActionsConfigurationForRowAt crack in ios11
I Use trailingSwipeActionsConfigurationForRowAt in IOS11 but when swipe multiple then app cracked. func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? { let delete = UIContextualAction(style: .normal, title: "Delete") { action, view, completionHandler in print("Deleting!") completionHandler(false) } delete.backgroundColor = UIColor.red let config = UISwipeActionsConfiguration(actions: [delete]) config.performsFirstActionWithFullSwipe = false return config } and some error *** Assertion failure in -