Guest User

Untitled

a guest
Jun 21st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. -(void) makeStatusItemAppear {
  2. // Menu
  3. NSMenu* actionMenu = [[NSMenu alloc] init];
  4. [menu addItemWithTitle:@"Do Something" action:@selector(doSomething) keyEquivalent:nil];
  5. // Status Item
  6. NSStatusItem* myStatusItem = [[NSStatusBar systemStatusBar] statusItemWithLength:32];
  7. [myStatusItem setImage:[NSImage imageWithContentsOfFile:@"blah/path/to/my/icon"]];
  8. [myStatusItem setMenu:actionMenu];
  9. }
  10.  
  11. -(void) doSomething {
  12. NSLog(@"Do Something was selected!");
  13. }
Add Comment
Please, Sign In to add comment