alicanbatur / GUAAlertView

Custom alert view with gesture support and block-based API.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GUAAlertView

Custom alert view with gesture support and block-based API.

Preview

screenshots

Usage

Wherever you want to use GUAAlertView, import the header file as follows:

#import "GUAAlertView.h"

Sample:

GUAAlertView *v = [GUAAlertView alertViewWithTitle:@"title"
                                           message:@"message"
                                       buttonTitle:@"buttonTitle"
                               buttonTouchedAction:^{
                                       NSLog(@"button touched");
                                   } dismissAction:^{
                                       NSLog(@"dismiss");
                                   }];

[v show];

Contact

About

Custom alert view with gesture support and block-based API.


Languages

Language:Objective-C 100.0%