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.
Asked
Active
Viewed 1,984 times
6
-
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 Answers
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.

user3871406
- 11
- 1
0
Thats not MBProgressHUD
, but you can replicate it with growl.

Dave DeLong
- 242,470
- 58
- 448
- 498

WrightsCS
- 50,551
- 22
- 134
- 186
-
-
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