xcode - 表视图下的进度条

时间:2014-09-18 09:33:39

标签: ios objective-c xcode progress-bar

我的进度条有一些问题,它在桌面下查看 我的进度条叫MBProgressHUD

https://github.com/jdg/MBProgressHUD

我的错误图片

enter image description here

3 个答案:

答案 0 :(得分:4)

在为代码添加加载程序时使用此功能。

MBProgressHUD *hud = [[MBProgressHUD alloc] initWithView:self.view];
[self.view addSubview:hud];
hud.labelText = @"Loading...";
hud.square = YES;
[hud show:YES];

答案 1 :(得分:2)

创建tableView对象后创建并添加MBProgressHUD的Object ...

作为最后添加的对象将高于所有其他对象,直到您指定该元素的索引。在你的情况下,可能是在MBProgressHUD之后添加了tableview,这就是为什么它会在进度条上方

答案 2 :(得分:2)

使用这个库真的很容易。您只需要致电

  

showHUDAddedTo:animated:

[MBProgressHUD showHUDAddedTo:self.view animated:YES];

检查是否有任何后续显示MBProgressHUD对象的任何调用,如

[self.view bringSubviewToFront:self.tableView];