美文网首页
MBProgressHUD简单使用

MBProgressHUD简单使用

作者: 郑州程序员王一 | 来源:发表于2017-06-05 09:37 被阅读65次

先留个眼,后续补充

最基础的显示,关闭
//开启菊花
MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self.navigationController.view animated:YES];
//自定义菊花背景颜色
hud.bezelView.style = NSPersonNameComponentsFormatterStyleMedium;
hud.bezelView.backgroundColor = [UIColor redColor];
//关闭菊花
[hud hideAnimated:YES];

相关文章

网友评论

      本文标题:MBProgressHUD简单使用

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