Skip to content

Instantly share code, notes, and snippets.

@fernyb
Created December 3, 2010 14:37
Show Gist options
  • Save fernyb/727026 to your computer and use it in GitHub Desktop.
Save fernyb/727026 to your computer and use it in GitHub Desktop.
NSStatusItem
NSStatusItem * statusItem;
statusItem = [[[NSStatusBar systemStatusBar] statusItemWithLength:NSSquareStatusItemLength] retain];
[statusItem setToolTip:@"ToolTip Name"];
[statusItem setTitle:@"Title"];
[statusItem setHighlightMode:YES];
[statusItem setMenu:statusMenu];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment