从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];
但此方法不显示它。请帮帮我