美文网首页
MBProgressHUD新版改变颜色

MBProgressHUD新版改变颜色

作者: Jamesholy | 来源:发表于2017-05-26 10:38 被阅读806次
    [UIActivityIndicatorView appearanceWhenContainedInInstancesOfClasses:@[[MBProgressHUD class]]].color = [UIColor whiteColor];//菊花 全局设置

    MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:[UIApplication sharedApplication].keyWindow animated:YES];

    hud.label.textColor = [UIColor whiteColor];
    hud.label.text = @"加载中...";
    hud.label.font = [UIFont systemFontOfSize:15];
//背景颜色
    hud.bezelView.style = MBProgressHUDBackgroundStyleSolidColor;
    hud.bezelView.backgroundColor = [UIColor blackColor];

相关文章

网友评论

      本文标题:MBProgressHUD新版改变颜色

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