4

Apple has NSStatusItem to manage the status bar item. But it does not have API to show a balloon message from the status bar.

I know Java has TrayIcon.displayMessage().

Does anyone know how to implement this balloon message with Xcode C/C++?

Cody Gray - on strike
  • 239,200
  • 50
  • 490
  • 574
user377808
  • 3,481
  • 2
  • 18
  • 12

2 Answers2

6

No, balloon-style messages are not part of the standard OS X UI. Many third-party tools use the Growl framework for similar functionality.

Barry Wark
  • 107,306
  • 24
  • 181
  • 206
2

This might be what your looking for: http://mattgemmell.com/2008/03/04/using-maattachedwindow-with-an-nsstatusitem

keegan3d
  • 10,357
  • 9
  • 53
  • 77