Skip to content

Instantly share code, notes, and snippets.

@PaulChana
Last active August 29, 2015 14:25
Show Gist options
  • Save PaulChana/c66672fdc115b07835a6 to your computer and use it in GitHub Desktop.
Save PaulChana/c66672fdc115b07835a6 to your computer and use it in GitHub Desktop.
Is NSButton in down state during drawing
- (void)drawRect:(NSRect)dirtyRect {
if ([self isHighlighted]) {
// Mouse is down
}
else {
// Nope, mouse is either down and outside our area, or not down
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment