jdg / MBProgressHUD

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

BG color of HUD can`t set clearColor #439

Closed ChuchukaloSergey closed 6 years ago

ChuchukaloSergey commented 8 years ago

screenshot why you deprecated the opportunity to set BG in clearColor ?

bawn commented 8 years ago

try

        self.hud.bezelView.style = MBProgressHUDBackgroundStyleSolidColor;
        self.hud.bezelView.backgroundColor = [UIColor clearColor];
        self.hud.label.textColor = [UIColor clearColor];
        self.hud.backgroundColor = [UIColor clearColor];
winterwd commented 7 years ago

if you want to set clearColor,must set MBProgressHUDBackgroundStyleSolidColor style. try

self.hud.bezelView.color = [UIColor clearColor];
self.hud.bezelView.style = MBProgressHUDBackgroundStyleSolidColor;
EdenChow commented 7 years ago

@winterWD ,there is good.thx