MBProgressHUD icon indicating copy to clipboard operation
MBProgressHUD copied to clipboard

MBProgressHUD + Customizations

Results 89 MBProgressHUD issues
Sort by recently updated
recently updated
newest added

MBProgressHUD 从1.1.0 更新到1.2.0 [后,切换手机dark模式,huD变成白色;怎么设置MBProgressHUD不受iPhone主题影响。 //iPhone浅色模式效果 ![71606121019_ pic](https://user-images.githubusercontent.com/13192184/99943376-2a2ab980-2dac-11eb-95aa-8ff0ea6d588f.jpg) //iPhone深色模式效果, ![81606121103_ pic](https://user-images.githubusercontent.com/13192184/99943387-2d25aa00-2dac-11eb-81d6-3fc0a7d108bd.jpg)

I don't have logs to show for this. But I can see the progress background, yet the image and the text do not appear on screen. Sometimes they appear but...

_blurEffectStyle = UIBlurEffectStyleSystemThickMaterial; 还是得改成 UIBlurEffectStyleLight 效果才正常的!

I use the following code to briefly show a custom view with icon that fades away automatically: ``` func displayFading(icon: MessageIcon, title: String, delay: TimeInterval = 2.0, completion: (()->())? =...

Sometimes, intrinsicContentSize is CGSize(-1,-1). This cause wrong padding.

MBProgressHUD *HUD = [[MBProgressHUD alloc] initWithView:view]; HUD.removeFromSuperViewOnHide = YES; HUD.graceTime = 0.25; [view addSubview:HUD]; [HUD showAnimated:YES]; [HUD hideAnimated:YES afterDelay:3]; 当设置了graceTime,延迟隐藏hud失效。 MBProgressHud版本号:1.1.0

Setting the background to black on ios13 doesn't work and the view is still light white. For example: MBProgressHUD *HUD = [MBProgressHUD showHUDAddedTo:view animated:YES]; HUD.mode = MBProgressHUDModeIndeterminate; HUD.bezelView.backgroundColor = [UIColor...

Please update the following two lines in the legacy release to make the compiler happy: In MDProgressHUD.h: ``` -typedef void (^MBProgressHUDCompletionBlock)(); +typedef void (^MBProgressHUDCompletionBlock)(void); ``` In MDProgressHUD.m: ``` -- (void)showAnimated:(BOOL)animated...