I am displaying a HUD while populating the TableView, but it seems to be showing behind the TableView (tableview separator breaking the hud).
Here's the code in the TableViewController:
- (void)viewDidLoad {
[super viewDidLoad];
MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self.view animated:YES];
hud.mode = MBProgressHUDModeText;
hud.labelText = @"Loading";
// Populate the table
[self getTableData];
self.tableView.rowHeight = 90;
}
It's doing this only with TableViews.