UITableView headings shown on top of MBProgressHUD

Posted by Chris Ballinger on Stack Overflow See other posts from Stack Overflow or by Chris Ballinger
Published on 2011-08-26T03:22:59Z Indexed on 2014/08/20 22:20 UTC
Read the original article Hit count: 142

So I have a subclass of UITableViewController that loads some data from the internet and uses MBProgressHUD during the loading process. I use the standard MBProgressHUD initialization.

    HUD = [[MBProgressHUD alloc] initWithView:self.view];
    [self.view addSubview:HUD];

    HUD.delegate = self;
    HUD.labelText = @"Loading";

    [HUD show:YES];

This is the result:

result.

Is there any way to resolve this issue, or should I just abandon MBProgressHUD?

Thanks!

© Stack Overflow or respective owner

Related posts about iphone

Related posts about ios