Releases: Friend-LGA/LGAlertView
Releases · Friend-LGA/LGAlertView
2.0.3
Fixed bugs
2.0.2
Added ability to transition between alert views:
LGAlertView *alertView1 = [LGAlertView alertView...
LGAlertView *alertView2 = [LGAlertView alertView...
[alertView1 transitionToAlertView:alertView2 completionHandler:nil];
2.0.1
Now you can:
- Set global tint color for all LGAlertViews using class method
+ (void)setTintColor:(UIColor *)color;
- Show only one button for one row
alertView.oneRowOneButton = YES;
- Programmatically call action, cancel and destructive methods
- (void)forceCancel;
- (void)forceDestructive;
- (void)forceActionAtIndex:(NSUInteger)index;
- Forced choose animations from bottom, then show ActionSheet on iPad
alertView.padShowActionSheetFromBottom
2.0.0
Now LGAlertView combine UIAlertViewController, UIAlertView and UIActionSheet.
You can:
- Select the style
- LGAlertViewStyleAlert
- LGAlertViewStyleActionSheet
- Select window level:
alertView.windowLevel = LGAlertViewWindowLevelAboveStatusBar;
alertView.windowLevel = LGAlertViewWindowLevelBelowStatusBar;
- Make any button disabled (important for AlertView with TextField)
- (void)setButtonAtIndex:(NSUInteger)index enabled:(BOOL)enabled;
New notifications was added (userInfo dictionary contains necessery info):
- kLGActionSheetActionNotification
- kLGActionSheetCancelNotification
- kLGActionSheetDestructiveNotification
1.1.2
Fix deprecation warnings, add notifications for action, cancel and destructive handlers and fix some bugs
1.1.1
Fixed status bar style and crash when windowPrevious is not exists
1.1.0
Fixed bug with Slide Over on iOS 9, update default styles and add ability to set buttons and textFields height and vertical offset
1.0.3
Release version 1.0.3
1.0.2
Release version 1.0.2
1.0.1
Release version 1.0.1