IOS - MBProgressHUD 设置自定义背景图像
IOS - MBProgressHUD set Custom Background image
默认情况下,MBProgressHUD 带有黑色背景色。我知道如何将此颜色更改为蓝色或绿色等。但是是否可以在 MBProgressHUD 的背景中设置自定义背景图像?
试试这个代码来设置图像
hudProgress.color =[UIColor colorWithPatternImage:[UIImage imageNamed:@"yourBackground.png"]]
如果您阅读头文件,您会看到 HUD 的状态和设置自定义视图的方法。
/**
* The UIView (e.g., a UIImageView) to be shown when the HUD is in MBProgressHUDModeCustomView.
* For best results use a 37 by 37 pixel view (so the bounds match the built in indicator bounds).
*/
@property (MB_STRONG) UIView *customView;
因此您需要创建自定义 UIView 并将其传递给您在调用 .show 之前创建的 HUD
默认情况下,MBProgressHUD 带有黑色背景色。我知道如何将此颜色更改为蓝色或绿色等。但是是否可以在 MBProgressHUD 的背景中设置自定义背景图像?
试试这个代码来设置图像
hudProgress.color =[UIColor colorWithPatternImage:[UIImage imageNamed:@"yourBackground.png"]]
如果您阅读头文件,您会看到 HUD 的状态和设置自定义视图的方法。
/**
* The UIView (e.g., a UIImageView) to be shown when the HUD is in MBProgressHUDModeCustomView.
* For best results use a 37 by 37 pixel view (so the bounds match the built in indicator bounds).
*/
@property (MB_STRONG) UIView *customView;
因此您需要创建自定义 UIView 并将其传递给您在调用 .show 之前创建的 HUD