6

I'm used to the iPhone API, and I used MBProgressHUD a lot in my iPhone applications, but since I started developing apps for the Mac I noticed that I can't use MBProgressHUD. Is there an alternative that will do the same job as the MBProgressHUD? I notice that apple has it in their OS as well.
alt text

Cœur
  • 37,241
  • 25
  • 195
  • 267
lab12
  • 6,400
  • 21
  • 68
  • 106
  • A similar question (or duplicate) is [here](https://stackoverflow.com/questions/26109701/create-a-temporary-hud-popup-notification-in-cocoa-app/). – Albert May 23 '21 at 08:42

2 Answers2

1

I have recently posted on github my conversion of MBProgressHUD from iOS to OS X. https://github.com/Foxnolds/MBProgressHUD-OSX The MBProgressHUD class will run on iOS and OS X and will compile in ARC and Non-ARC mode. Good luck.

0

Thats not MBProgressHUD, but you can replicate it with growl.

Dave DeLong
  • 242,470
  • 58
  • 448
  • 498
WrightsCS
  • 50,551
  • 22
  • 134
  • 186
  • How would I use growl in my application to produce something like that? – lab12 Jan 06 '11 at 00:27
  • That link is to the Growl Developer Documents. There you will find downloads, which contains a few examples for you to start integrating into your Mac Apps. – WrightsCS Jan 06 '11 at 00:28
  • Not sure if you still need this, but something that comes close for me is http://kdbdallas.com/2008/12/28/white-indeterminate-progress-indicator-aka-white-nsprogressindicator/ – Tejaswi Yerukalapudi Mar 01 '12 at 16:15