Releases: Friend-LGA/LGAlertView
Releases · Friend-LGA/LGAlertView
2.0.13
Fixed bugs
2.0.12
Now you can:
- Dismiss or not alert view on user action (default is YES)
alertView.dismissOnAction = NO;
- Setup all properties globally for all instances of LGAlertView
[LGAlertView setTintColor:[UIColor greenColor]];
[LGAlertView setColorful:NO];
[LGAlertView setCoverColor:[UIColor colorWithWhite:1.f alpha:0.8]];
[LGAlertView setBackgroundColor:[UIColor grayColor]];
- . . .
2.0.11
Fixed bugs
2.0.10
Fixed bugs
2.0.9
Refactoring
2.0.8
Add class method to get all existing LGAlertViews:
[LGAlertView getAlertViewsArray];
2.0.7
Fixed bugs
2.0.6
2.0.5
Fixed bugs
2.0.4
Fixed bugs, updated from typedef enum
to typedef NS_ENUM
.
Now you can:
- Set properties for every button
- (void)setButtonPropertiesAtIndex:(NSUInteger)index handler:(void(^)(LGAlertViewButtonProperties *properties))handler;