Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/asich/amtumblrhud
Progress HUD inspired by Tumblr app
https://github.com/asich/amtumblrhud
ios objective-c progress-hud
Last synced: 3 months ago
JSON representation
Progress HUD inspired by Tumblr app
- Host: GitHub
- URL: https://github.com/asich/amtumblrhud
- Owner: Asich
- License: mit
- Created: 2014-05-23T16:27:22.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-01-02T07:09:14.000Z (about 8 years ago)
- Last Synced: 2024-10-14T13:16:26.714Z (3 months ago)
- Topics: ios, objective-c, progress-hud
- Language: Objective-C
- Size: 285 KB
- Stars: 147
- Watchers: 6
- Forks: 23
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
AMTumblrHud
===========Progress HUD inspired by Tumblr app.
## Installation
Add the `AMTumblrHud.h` and `AMTumblrHud.m` source files to your project.
1. Download the latest code version or add the repository as a git submodule to your git-tracked project.
2. Open your project in Xcode, then drag and drop `AMTumblrHud.h` and `AMTumblrHud.m` onto your project (use the "Product Navigator view"). Make sure to select Copy items when asked if you extracted the code archive outside of your project.
3. Include AMTumblrHud wherever you need it with `#import "AMTumblrHud.h"`Or use **CocoaPods:**
pod 'AMTumblrHud'
## Usage
```objective-c
AMTumblrHud *tumblrHUD = [[AMTumblrHud alloc] initWithFrame:CGRectMake(100, 100, 55, 20)];
tumblrHUD.hudColor = UIColorFromRGB(0xF1F2F3); //[UIColor magentaColor];
[self.view addSubview:tumblrHUD];[tumblrHUD showAnimated:YES];
```## License
This code is distributed under the terms and conditions of the [MIT license](LICENSE).