https://github.com/Jinxiansen/JHUD
A full screen of the HUD when loading the data (Objective-C).
https://github.com/Jinxiansen/JHUD
animtion empty hud ios loading loading-animations mbprogresshud notice svprogresshud toast
Last synced: about 2 months ago
JSON representation
A full screen of the HUD when loading the data (Objective-C).
- Host: GitHub
- URL: https://github.com/Jinxiansen/JHUD
- Owner: Jinxiansen
- License: mit
- Archived: true
- Created: 2016-07-12T10:21:19.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-07-03T07:33:19.000Z (almost 7 years ago)
- Last Synced: 2025-03-17T22:05:20.003Z (4 months ago)
- Topics: animtion, empty, hud, ios, loading, loading-animations, mbprogresshud, notice, svprogresshud, toast
- Language: Objective-C
- Homepage:
- Size: 2.6 MB
- Stars: 1,010
- Watchers: 41
- Forks: 153
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - JHUD - A full screen of the HUD when loading the data (Objective-C).【 [Priview 1](https://github.com/Jinxiansen/JHUD/raw/master/gif/2.gif) | [Priview 2](https://github.com/Jinxiansen/JHUD/blob/master/gif/5.gif) 】 (OOM-Leaks-Crash / HUD-Indicator)
README
[](http://cocoapods.org/pods/JHUD)
[](http://cocoapods.org/pods/JHUD)
[](http://cocoapods.org/pods/JHUD)
[](https://www.apple.com/nl/ios/)

[](https://github.com/jinxiansen/JHUD/stargazers)
#### `JHUD` is a full screen of the HUD when loading the data (Objective-C) .
####  **Chinese (Simplified)**:
##### [中文说明](README.zh.md) / [简书介绍](http://www.jianshu.com/p/fc07f027680c)## Screenshots
|H|U|D|
|:---:|:---:|:---:|
||||
|||## Requirements
`JHUD` works on "Xcode 7.3 , iOS 6+ and requires ARC to build.
You will need the latest developer tools in order to build `JHUD`. Old Xcode versions might work, but compatibility will not be explicitly maintained.## CocoaPods
CocoaPods is the recommended way to add JHUD to your project.
First, add a pod entry for JHUD to your Podfile.
```
pod 'JHUD'
```
Second, install JHUD into your project:
```
pod install
```
Third, include JHUD wherever you need it with `#import "JHUD.h"`.## Manually
1. Download the latest code version .
2. Open your project in Xcode,drag the `JHUD` folder into your project. Make sure to select Copy items when asked if you extracted the code archive outside of your project.
3. You need it with `#import "JHUD.h"`.## Usage
```
hudView = [[JHUD alloc]initWithFrame:self.view.bounds];hudView.messageLabel.text = @"hello ,this is a circle animation";
//show
[hudView showAtView:self.view hudType:JHUDLoadingTypeCircle];//hide
[hudView hide];
```Class method :
```
[JHUD showAtView:self.view message:@"Hello, this is a message"];[JHUD hideForView:self.view];
```For more examples, including how to use JHUD , take a look at the bundled demo project. API documentation is provided in the header file (JHUD.h).
## Contacts 
#### If you wish to contact me, email at: [email protected]
##### Sina : [@晋先森](http://weibo.com/3205872327)
##### Twitter : [@jinxiansen](https://twitter.com/jinxiansen)## License
JHUD is released under the [MIT license](LICENSE). See LICENSE for details.