Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

enter image description here

The triangle at the top looks so wonderful, but I can't compose one like that.

I had tried to write some code as below, but I saw an ordinary menu.

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {// Insert code here to initialize your application

NSStatusItem * statusItem = [[[NSStatusBar systemStatusBar] statusItemWithLength:110] retain];
[statusItem setTitle:@"Test"];
[statusItem setEnabled:YES];
[statusItem setHighlightMode:YES];

statusItem.menu = [[NSMenu alloc] initWithTitle:@"menu"];
NSMenuItem * menuItem = [[NSMenuItem alloc] initWithTitle:@"menuItem1" action:NULL keyEquivalent:@""];
[statusItem.menu addItem:menuItem]; }

enter image description here

Please help me to do something to carry it out. Thanks a lot!

share|improve this question
2  
Have a look at NSPopover. – omz Jan 20 at 14:12
Thank you, omz! I've done according to your suggestion. – Jerry Ray Jan 20 at 15:04

closed as not a real question by Filip Radelic, Tomasz Wojtkowiak, hjpotter92, CJM, SztupY Jan 20 at 16:13

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 1 down vote accepted
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification{
// Insert code here to initialize your application

NSStatusItem * statusItem = [[[NSStatusBar systemStatusBar] statusItemWithLength:110] retain];
[statusItem setTitle:@"Test"];
[statusItem setEnabled:YES];
[statusItem setHighlightMode:YES];
[statusItem setTarget:self];
[statusItem setAction:@selector(showPopover:)];
}

- (void) showPopover:(id)sender {
NSLog(@"sender is: %@", sender);
RSTestPopoverViewController * viewController = [[RSTestPopoverViewController alloc] initWithNibName:@"RSTestPopoverViewController" bundle:nil];
NSPopover * popover = [NSPopover new];
popover.contentViewController = viewController;
[popover showRelativeToRect:NSZeroRect ofView:(NSView *)sender preferredEdge:NSMinYEdge];
}

The parameter of popover callback is an instance of NSStatusBarButton class. Here is the output in my console.

2013-01-20 23:08:36.602 TestMacWindow[1190:303] sender is: <NSStatusBarButton: 0x101917d10>
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.