从superView中删除后如何显示MBProgressHUD。

时间:2013-06-14 05:49:30

标签: iphone objective-c ios6 xcode4.5 mbprogresshud

MBProgressHUD移除后,我的superview未显示。当我第一次删除superview之后,我几乎播种但看不到。 我的代码是

if(condition)  
{

    HUD.customView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"37x-Checkmark.png"]];

    [HUD bringSubviewToFront:HUD];

    HUD.mode = MBProgressHUDModeCustomView;

    HUD.labelText = @"Unfollowed";

    [HUD hide:YES afterDelay:0.5];

}

[HUD hide:YES];

[HUD removeFromSuperViewOnHide];
之后我再次展示了

[HUD show:YES];

但此方法不显示它。请帮帮我

0 个答案:

没有答案