没有圆角背景视图的进步



我想删除mbprogresshud的背景视图。我正在尝试将边框视图的颜色和背景颜色设置为清除颜色,但它没有显示我真正想要的颜色。有没有办法从hud中删除背景视图。我的代码是这样的

MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:view animated:YES];
[hud.bezelView setColor:kColorMainParentColor];
[hud.bezelView setBackgroundColor:kColorMainParentColor];
[hud.bezelView setStyle:MBProgressHUDBackgroundStyleBlur];
[hud setBackgroundColor:[[UIColor whiteColor] colorWithAlphaComponent:0.2]];

MBProgressHUD.m文件中bezelView.layer.cornerRadius = 5.f;找到此行,然后将其删除或注释掉。

最新更新