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]; }

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

NSPopover. – omz Jan 20 at 14:12