ヒント-SVProgressHUD
1113 ワード
簡単な設定でそのまま使えるので、とても便利です.
直接使用
直接使用
//
[SVProgressHUD showWithStatus:@"message" maskType:SVProgressHUDMaskTypeBlack];
// ,
[SVProgressHUD showInfoWithStatus:@"info-info-info" maskType:SVProgressHUDMaskTypeBlack];
//
[SVProgressHUD showProgress:0.3 status:@"loading..." maskType:SVProgressHUDMaskTypeBlack];
//
[SVProgressHUD showImage:[UIImage imageNamed:@"Icon-60"] status:@"message" maskType:SVProgressHUDMaskTypeBlack];
簡単なカスタマイズ [SVProgressHUD setDefaultMaskType:SVProgressHUDMaskTypeBlack];//
[SVProgressHUD setBackgroundColor:[UIColor yellowColor]];//
[SVProgressHUD setForegroundColor:[UIColor greenColor]];//
[SVProgressHUD setInfoImage:[UIImage imageNamed:@"Icon-60@3x"]];//
[SVProgressHUD setFont:[UIFont systemFontOfSize:20]];//
[SVProgressHUD setRingThickness:10];//
[SVProgressHUD setOffsetFromCenter:UIOffsetMake(0, 100)];//
```
## 。。。