CocoaDev

Edit AllPages

MBProgressHUD is replacement for the undocumented UIProgressHUD UIKit class with some additional features. The class displays s translucent HUD with a progress indicator and some optional labels while work is being done in a background thread. The HUD can show both determinate and indeterminate progress.

More info and download: http://github.com/matej/MBProgressHUD and http://www.bukovinski.com

#import <UIKit/UIKit.h> #import “MBProgressHUD.h”

@interface HudDemoViewController : UIViewController { MBProgressHUD *HUD; }

@end

#import “HudDemoViewController.h”

@implementation HudDemoViewController

}

@end