
Untitled
By: a guest on
Jul 24th, 2011 | syntax:
Objective C | size: 0.42 KB | hits: 148 | expires: Never
- (void)viewDidLoad
{
// Load data in background while displaying an activity indicator
NSLog(@"start HUD progress");
HUD = [[MBProgressHUD alloc] initWithView:self.navigationController.view];
[self.navigationController.view addSubview:HUD];
HUD.delegate = self;
HUD.labelText = @"Loading";
[HUD showWhileExecuting:@selector(loadDataFromWeb) onTarget:self withObject:nil animated:YES];
}