Skip to content

Instantly share code, notes, and snippets.

@stevebartholomew
Last active September 21, 2016 12:37
Show Gist options
  • Save stevebartholomew/27b797f5eafac8b561eb to your computer and use it in GitHub Desktop.
Save stevebartholomew/27b797f5eafac8b561eb to your computer and use it in GitHub Desktop.
Validate Drop
func tableView(tableView: NSTableView, validateDrop info: NSDraggingInfo, proposedRow row: Int, proposedDropOperation dropOperation: NSTableViewDropOperation) -> NSDragOperation {
tableView.setDropRow(row, dropOperation: NSTableViewDropOperation.Above)
return NSDragOperation.Move
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment