Created
December 3, 2010 14:37
-
-
Save fernyb/727026 to your computer and use it in GitHub Desktop.
NSStatusItem
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
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