2017-10-23 15 views
1

スワイプを追加しようとするたびに、削除するスワイプが表示されます。スワイプのアクションには常に削除があります

override func tableView(_ tableView: UITableView, leadingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? { 


    let closeAction = UIContextualAction(style: .normal, title: "Share", handler: { (ac:UIContextualAction, view:UIView, success:(Bool) -> Void) in 
     print("OK, marked as Closed") 

     success(true) 
    }) 

    closeAction.backgroundColor = .blue 

    return UISwipeActionsConfiguration(actions: [closeAction]) 


} 

答えて

2

固定

override func tableView(_ tableView: UITableView, editingStyleForRowAt indexPath: IndexPath) -> UITableViewCellEditingStyle { 
    return .none 
} 
関連する問題