美文网首页
MBProgressHUD背景色

MBProgressHUD背景色

作者: Superman168 | 来源:发表于2018-03-01 14:36 被阅读0次
    // 快速显示一个提示信息
    MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:view animated:YES];
    hud.mode = MBProgressHUDModeCustomView;
    hud.label.text = message;
    // 隐藏时候从父控件中移除
    hud.removeFromSuperViewOnHide = YES;
    // 修改Hud的背景颜色
    //修改样式,否则等待框背景色将为半透明
    hud.bezelView.style = MBProgressHUDBackgroundStyleSolidColor;
  // 更改为全透明的,显示动画图片
    hud.bezelView.backgroundColor = [UIColor clearColor];
    hud.customView = imageView;
    hud.alpha = 0;
    [UIView animateWithDuration:2 animations:^{
        hud.alpha = 1;
    }];
   
    return hud;

相关文章

网友评论

      本文标题:MBProgressHUD背景色

      本文链接:https://www.haomeiwen.com/subject/pubgxftx.html