Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/onemightyroar/YRDropdownView
iOS view library for displaying stylish alerts, warnings, & errors
https://github.com/onemightyroar/YRDropdownView
Last synced: 2 months ago
JSON representation
iOS view library for displaying stylish alerts, warnings, & errors
- Host: GitHub
- URL: https://github.com/onemightyroar/YRDropdownView
- Owner: onemightyroar
- License: other
- Created: 2012-01-31T19:30:03.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-10-14T14:52:48.000Z (over 11 years ago)
- Last Synced: 2024-10-31T15:54:04.595Z (3 months ago)
- Language: Objective-C
- Homepage: http://buildinternet.com/2012/02/yrdropdownview-a-polite-uialertview-alternative-for-ios/
- Size: 653 KB
- Stars: 813
- Watchers: 37
- Forks: 105
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome - YRDropdownView - iOS view library for displaying stylish alerts, warnings, & errors (etc)
- awesome - YRDropdownView - iOS view library for displaying stylish alerts, warnings, & errors (etc)
README
## YRDropdownView
![Sample](https://github.com/onemightyroar/YRDropdownView/raw/gh-pages/images/screenshot.png "Sample")
YRDropdownView is a view library for displaying stylish alerts, warnings, and errors. Based on Tweetbot's implementation, [MKInfoPanel](https://github.com/MugunthKumar/MKInfoPanelDemo) by Mugunth Kumar, [MBProgressHUD](https://github.com/jdg/MBProgressHUD) by Matej Bukovinski and [DSActivityView](https://github.com/joycodes/DSActivityView) by David Sinclair, among other influences. Its API has been hashed out to make the code easily implemented and very versatile.
### Using YRDropdownView in your project?
Be sure to contact me and let me know, I'd love to give your app some promo love. See the Contact section below to let me know!
## InstallationTo use YRDropdownView:
1. Copy over the `YRDropdownView` folder to your project folder. (Note: currently, the background is being drawn using a stretchable image, `bg-yellow.png`. Should you choose to supply your own background, you only need the `YRDropdownView.h\.m` files)
2. Enjoy!## Usage
Wherever you want to use YRDropdownView, import the header file as follows:
``` objective-c
#import "YRDropdownView.h"
```### Basic
You can create your dropdown by calling the singleton method:``` objective-c
[YRDropdownView showDropdownInView:self.view
title:@"Warning"
detail:@"Danger Will Robinson. You cannot do that."];
```By default, calling the above method will only dismiss when clicked on. To dismiss, then call:
``` objective-c
[YRDropdownView hideDropdownInView:self.view];
```### Customizing
There are many different ways to customize the alert by calling different singleton methods:``` objective-c
+ (YRDropdownView *)showDropdownInView:(UIView *)view
title:(NSString *)title;+ (YRDropdownView *)showDropdownInView:(UIView *)view
title:(NSString *)title
detail:(NSString *)detail;+ (YRDropdownView *)showDropdownInView:(UIView *)view
title:(NSString *)title
detail:(NSString *)detail
animated:(BOOL)animated;+ (YRDropdownView *)showDropdownInView:(UIView *)view
title:(NSString *)title
detail:(NSString *)detail
image:(UIImage *)image
animated:(BOOL)animated;+ (YRDropdownView *)showDropdownInView:(UIView *)view
title:(NSString *)title
detail:(NSString *)detail
image:(UIImage *)image
animated:(BOOL)animated
hideAfter:(float)delay;
+ (YRDropdownView *)showDropdownInView:(UIView *)view
title:(NSString *)title
detail:(NSString *)detail
image:(UIImage *)image
backgroundImage:(UIImage *)backgroundImage
animated:(BOOL)animated
hideAfter:(float)delay;+ (YRDropdownView *)showDropdownInView:(UIView *)view
title:(NSString *)title
detail:(NSString *)detail
image:(UIImage *)image
backgroundImage:(UIImage *)backgroundImage
titleLabelColor:(UIColor *)titleLabelColor
detailLabelColor:(UIColor *)detailLabelColor
animated:(BOOL)animated
hideAfter:(float)delay;+ (BOOL)hideDropdownInView:(UIView *)view;
+ (BOOL)hideDropdownInView:(UIView *)view animated:(BOOL)animated;+ (YRDropdownView *)showDropdownInWindow:(UIWindow *)window
title:(NSString *)title;+ (YRDropdownView *)showDropdownInWindow:(UIWindow *)window
title:(NSString *)title
detail:(NSString *)detail;+ (YRDropdownView *)showDropdownInWindow:(UIWindow *)window
title:(NSString *)title
detail:(NSString *)detail
animated:(BOOL)animated;+ (YRDropdownView *)showDropdownInWindow:(UIWindow *)window
title:(NSString *)title
detail:(NSString *)detail
image:(UIImage *)image
animated:(BOOL)animated;+ (YRDropdownView *)showDropdownInWindow:(UIWindow *)window
title:(NSString *)title
detail:(NSString *)detail
image:(UIImage *)image
animated:(BOOL)animated
hideAfter:(float)delay;+ (YRDropdownView *)showDropdownInWindow:(UIWindow *)window
title:(NSString *)title
detail:(NSString *)detail
image:(UIImage *)image
backgroundImage:(UIImage *)backgroundImage
animated:(BOOL)animated
hideAfter:(float)delay;+ (YRDropdownView *)showDropdownInWindow:(UIWindow *)window
title:(NSString *)title
detail:(NSString *)detail
image:(UIImage *)image
backgroundImage:(UIImage *)backgroundImage
titleLabelColor:(UIColor *)titleLabelColor
detailLabelColor:(UIColor *)detailLabelColor
animated:(BOOL)animated
hideAfter:(float)delay;+ (BOOL)hideDropdownInWindow:(UIWindow *)window;
+ (BOOL)hideDropdownInWindow:(UIWindow *)window animated:(BOOL)animated;
```## Notes
### Automatic Reference Counting (ARC) support
ARC support has been neglected in part for now. Your contributions are more than welcome, however. If you want to use YRDropdownView in an ARC project, just add the [add the
``` objective-c
-fno-objc-arc
```
compiler flag](http://stackoverflow.com/questions/6646052/how-can-i-disable-arc-for-a-single-file-in-a-project) to all YRDropdownView files in your project.## Contact
- http://github.com/eliperkins
- http://twitter.com/e_perkins1
- [email protected]## License
### MIT License
Copyright (c) 2012 One Mighty Roar (http://onemightyroar.com)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/onemightyroar/yrdropdownview/trend.png)](https://bitdeli.com/free "Bitdeli Badge")