https://github.com/insfgg99x/fggprogresshud
简单好看的加载指示器
https://github.com/insfgg99x/fggprogresshud
hud loading loading-indicator progresshud
Last synced: 6 months ago
JSON representation
简单好看的加载指示器
- Host: GitHub
- URL: https://github.com/insfgg99x/fggprogresshud
- Owner: Insfgg99x
- License: mit
- Created: 2015-08-12T05:14:36.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2018-03-15T03:33:59.000Z (about 8 years ago)
- Last Synced: 2025-05-07T06:49:15.434Z (11 months ago)
- Topics: hud, loading, loading-indicator, progresshud
- Language: Objective-C
- Homepage:
- Size: 95.7 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
##FGGProgressHUD

##Producation
一个极简的HUD蒙板,直接在controller中使用,`[self showHUD]`
##Usage
- show:
```
[self showHUD];
```
- hide:
```
[self hideHUD];
```
like this:
```
- (void)viewDidLoad {
[self showHUD];
__weak typeof(self) wkself=self;
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
[wkself hideHUD];
});
}
```