Can you show your code in the question? That would make it easier for you. But, not knowing what your code looks like, this might work for you:
Add this to your statusItem
self.statusItem.action = @selector(clickStatusBar:);
Add a method like this to display a popover
- (void)clickStatusBar:(id)sender { [[self popover] showRelativeToRect:[sender bounds] ofView:sender preferredEdge:NSMinYEdge]; }
source share