YRDropdownView is a view library for displaying stylish alerts, warnings, and errors. Based on Tweetbot's implementation, MKInfoPanel by Mugunth Kumar, MBProgressHUD by Matej Bukovinski and DSActivityView by David Sinclair, among other influences. Its API has been hashed out to make the code easily implemented and very versatile.
This repo is forked from gregwym/YRDropdownView which forked from onemightyroar/YRDropdownView.
-
Add argument for custom colors
+ (YRDropdownView *)showDropdownInView:(UIView *)view title:(NSString *)title detail:(NSString *)detail image:(UIImage *)image textColor:(UIColor *)textColor backgroundColor:(UIColor *)bgColor animated:(BOOL)animated hideAfter:(float)delay;
-
Add ability to toggle queuing behavior
-
Use accessoryView instead of accessoryImageView, so can use not only
UIImageView
as accessory. i.e.,UIActivityIndicatorView
. To use this ability, call+ (YRDropdownView *)showDropdownInView:(UIView *)view title:(NSString *)title detail:(NSString *)detail accessoryView:(UIView *)accessoryView animated:(BOOL)animated hideAfter:(float)delay;
Please refer to the issue tracker.
To use YRDropdownView: Install it with CocoaPods
pod 'YRDropdownView', :git => 'https://github.com/iOctocat/YRDropdownView.git'
Or copy over the YRDropdownView
folder to your project folder. Enjoy!
Wherever you want to use YRDropdownView, import the header file as follows:
#import "YRDropdownView.h"
You can create your dropdown by calling the singleton method:
[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:
[YRDropdownView hideDropdownInView:self.view];
There are many different ways to customize the alert by calling different singleton methods:
+ (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
textColor:(UIColor *)textColor
backgroundColor:(UIColor *)bgColor
animated:(BOOL)animated
hideAfter:(float)delay;
+ (YRDropdownView *)showDropdownInView:(UIView *)view
title:(NSString *)title
detail:(NSString *)detail
accessoryView:(UIView *)accessoryView
animated:(BOOL)animated
hideAfter:(float)delay;
+ (YRDropdownView *)showDropdownInView:(UIView *)view
title:(NSString *)title
detail:(NSString *)detail
accessoryView:(UIView *)accessoryView
textColor:(UIColor *)textColor
backgroundColor:(UIColor *)bgColor
animated:(BOOL)animated
hideAfter:(float)delay;
+ (BOOL)hideDropdownInView:(UIView *)view;
+ (BOOL)hideDropdownInView:(UIView *)view animated:(BOOL)animated;
+ (void)toggleRtl:(BOOL)rtl;
+ (void)toggleQueuing:(BOOL)queuing;
When toggleRtl:YES
is called, the order of elements in view will be reversed. i.e., accessoryView locates on the right of the labels.
When toggleQueuing:YES
is called, the Dropdowns will be queued. New Dropdown will not show until the last one disappears.
ARC is now fully supported. Thanks Danielgindi's awesome work.
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.