Skip to content

Instantly share code, notes, and snippets.

@jcm93
Created June 21, 2016 03:18
Show Gist options
  • Save jcm93/ba5115cd8879ed769a5eb7e78aedf187 to your computer and use it in GitHub Desktop.
Save jcm93/ba5115cd8879ed769a5eb7e78aedf187 to your computer and use it in GitHub Desktop.
//
// TableViewYouCanPressSpacebarOn.swift
// minimalTunes
//
//
import Cocoa
class TableViewYouCanPressSpacebarOn: NSTableView {
override func drawRect(dirtyRect: NSRect) {
super.drawRect(dirtyRect)
// Drawing code here.
}
override func keyDown(theEvent: NSEvent) {
if theEvent.keyCode == 49 {
print("you pressed the spacebar motherfucker")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment