Created
June 21, 2016 03:18
-
-
Save jcm93/ba5115cd8879ed769a5eb7e78aedf187 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// 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