jdg / MBProgressHUD

MBProgressHUD + Customizations
http://www.bukovinski.com/
MIT License
16.01k stars 3.56k forks source link

I can't find a way to change backgroudColor of "text only" Hud. #654

Open Goallying opened 7 months ago

Goallying commented 7 months ago

image

how to change "text only" hud background Color?

ShahrukhMalik commented 3 weeks ago

Use following property to change text only hud background color. NOTE: It will change color but hidden behind blur view.

MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self.view animated:YES];
hud.bezelView.backgroundColor = [UIColor redColor];

BackgroundColorChange