6 #import <UIKit/UIKit.h>
12 NSMutableArray *_blocks;
20 + (
BlockAlertView *)alertWithTitle:(NSString *)title message:(NSString *)message;
22 + (void)showInfoAlertWithTitle:(NSString *)title message:(NSString *)message;
23 + (void)showErrorAlert:(NSError *)error;
25 - (id)initWithTitle:(NSString *)title message:(NSString *)message;
27 - (void)setDestructiveButtonWithTitle:(NSString *)title block:(
void (^)())block;
28 - (void)setCancelButtonWithTitle:(NSString *)title block:(
void (^)())block;
29 - (void)addButtonWithTitle:(NSString *)title block:(
void (^)())block;
31 - (void)addComponents:(CGRect)frame;
34 - (void)dismissWithClickedButtonIndex:(NSInteger)buttonIndex animated:(BOOL)animated;
38 @property(nonatomic, retain) UIImage *backgroundImage;
39 @property(nonatomic, readonly) UIView *view;
40 @property(nonatomic, readwrite) BOOL vignetteBackground;