An UIAlertView replacement with block syntax and fancy transition styles. As seen in Grid Diary.
- use window to present
- happy with rotation
- block syntax
- styled transitions
- queue support
- UIAppearance support
- an accessoryView (UIView), e.g., an animatable UIImageView
- Add
pod 'SIAlertView'to your Podfile. - Run
pod install
- Add all files under
SIAlertView/SIAlertViewto your project - Add
QuartzCore.frameworkto your project
- iOS 5.0 and greater
- ARC
(If you are having any problems, just select your project -> Build Phases -> Compile Sources, double-click the SIAlertView and add -fobjc-arc)
Code:
SIAlertView *alertView = [[SIAlertView alloc] initWithTitle:@"SIAlertView" andMessage:@"Sumi Interactive"];
[alertView addButtonWithTitle:@"Button1"
type:SIAlertViewButtonTypeDefault
handler:^(SIAlertView *alert) {
NSLog(@"Button1 Clicked");
}];
[alertView addButtonWithTitle:@"Button2"
type:SIAlertViewButtonTypeDestructive
handler:^(SIAlertView *alert) {
NSLog(@"Button2 Clicked");
}];
[alertView addButtonWithTitle:@"Button3"
type:SIAlertViewButtonTypeCancel
handler:^(SIAlertView *alert) {
NSLog(@"Button3 Clicked");
}];
alertView.willShowHandler = ^(SIAlertView *alertView) {
NSLog(@"%@, willShowHandler", alertView);
};
alertView.didShowHandler = ^(SIAlertView *alertView) {
NSLog(@"%@, didShowHandler", alertView);
};
alertView.willDismissHandler = ^(SIAlertView *alertView) {
NSLog(@"%@, willDismissHandler", alertView);
};
alertView.didDismissHandler = ^(SIAlertView *alertView) {
NSLog(@"%@, didDismissHandler", alertView);
};
alertView.transitionStyle = SIAlertViewTransitionStyleBounce;
[alertView show];Another example:
UIImageView* someImageView = /* something of your own */;
SIAlertView *alertView = [[SIAlertView alloc] initWithTitle:@"SIAlertView"
andMessage:@"Richard H Fung"
andContentView:someImageView];
[alertView addButtonWithTitle:@"Button1"
type:SIAlertViewButtonTypeDefault
handler:^(SIAlertView *alert) {
NSLog(@"Button1 Clicked");
}];
alertView.transitionStyle = SIAlertViewTransitionStyleBounce;
alertView.accessoryView = someImageView; /* alternative way to set up an accessoryView */
[alertView show];SIAlertView was created by Sumi Interactive in the development of Grid Diary. SIAlertView is modified by Richard H Fung for buidling iPhone apps.
SIAlertView is available under the MIT license. See the LICENSE file for more info.

