When I swipe a UITableView cell, the below code is called:
func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath) -> [UITable
Default initializers are removed from some imported enum types in Swift 3.
Use UITableViewRowActionStyle.default (or in your case simply .default) instead of UITableViewRowActionStyle().
UITableViewRowActionStyle.default
.default
UITableViewRowActionStyle()
let delBut = UITableViewRowAction(style: .default, title: delete_InLocal) { action, index in