Skip to content

Releases: Friend-LGA/LGAlertView

2.0.13

01 Dec 12:01
Compare
Choose a tag to compare

Fixed bugs

2.0.12

30 Nov 15:36
Compare
Choose a tag to compare

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

16 Nov 16:55
Compare
Choose a tag to compare

Fixed bugs

2.0.10

16 Nov 16:55
Compare
Choose a tag to compare

Fixed bugs

2.0.9

13 Nov 14:30
Compare
Choose a tag to compare

Refactoring

2.0.8

13 Nov 13:56
Compare
Choose a tag to compare

Add class method to get all existing LGAlertViews:

  • [LGAlertView getAlertViewsArray];

2.0.7

13 Nov 11:44
Compare
Choose a tag to compare

Fixed bugs

2.0.6

11 Nov 15:43
Compare
Choose a tag to compare

Carthage

Carthage is a lightweight dependency manager for Swift and Objective-C. It leverages CocoaTouch modules and is less invasive than CocoaPods. To install with carthage, follow the instruction on Carthage.

Cartfile

github "Friend-LGA/LGAlertView"

And updated demo project

2.0.5

10 Nov 11:50
Compare
Choose a tag to compare

Fixed bugs

2.0.4

09 Nov 17:14
Compare
Choose a tag to compare

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;