Tag: mbprogresshud hud

MBProgressHUD和UITableView

我在填充TableView时显示HUD,但它似乎显示在TableView后面(tableview分隔符打破了HUD)。 以下是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; } 这只是与TableViews做这个。