Skip to content
This repository was archived by the owner on Nov 12, 2024. It is now read-only.

Repository files navigation

Deprecated, please use RxCocoa

SHAlertViewBlocks

CI StatusVersionPlatformLicense

This pod is used by SHUIKitBlocks as part of many components covering to plug the holes missing from Foundation, UIKit, CoreLocation, GameKit, MapKit and other aspects of an iOS application's architecture.

Overview

The blocks are automatically removed once the alert is gone, so it isn't necessary to clean up - Swizzle Free(™)

API

Installation

pod'SHAlertViewBlocks'

Setup

Put this either in specific files or your project prefix file

#import"UIAlertView+SHAlertViewBlocks.h"

or

#import"SHAlertViewBlocks.h"

API

Init

#pragma mark -
#pragma mark Init
+(instancetype)SH_alertViewWithTitle:(NSString *)theTitle withMessage:(NSString *)theMessage;
+(instancetype)SH_alertViewWithTitle:(NSString *)theTitle
andMessage:(NSString *)theMessage
buttonTitles:(NSArray *)theButtonTitles
cancelTitle:(NSString *)theCancelTitle
withBlock:(SHAlertViewBlock)theBlock;

Add

#pragma mark -
#pragma mark Adding
-(NSInteger)SH_addButtonWithTitle:(NSString *)theTitle
withBlock:(SHAlertViewBlock)theBlock;
///Will add a new cancel button and make previous cancel buttons to a normal button
-(NSInteger)SH_addButtonCancelWithTitle:(NSString *)theTitle
withBlock:(SHAlertViewBlock)theBlock;

Properties

#pragma mark -
#pragma mark Properties
#pragma mark -
#pragma mark Setters
-(void)SH_setButtonBlockForIndex:(NSInteger)theButtonIndex
withBlock:(SHAlertViewBlock)theBlock;
-(void)SH_setButtonCancelBlock:(SHAlertViewBlock)theBlock;
-(void)SH_setWillShowBlock:(SHAlertViewShowBlock)theBlock;
-(void)SH_setDidShowBlock:(SHAlertViewShowBlock)theBlock;
-(void)SH_setWillDismissBlock:(SHAlertViewDismissBlock)theBlock;
-(void)SH_setDidDismissBlock:(SHAlertViewDismissBlock)theBlock;
-(void)SH_setFirstButtonEnabledBlock:(SHAlertViewFirstButtonEnabledBlock)theBlock;
#pragma mark -
#pragma mark Getters
-(SHAlertViewBlock)SH_blockForButtonIndex:(NSInteger)theButtonIndex;
@property(nonatomic,readonly) SHAlertViewBlock SH_blockForCancelButton;
@property(nonatomic,readonly) SHAlertViewShowBlock SH_blockWillShow;
@property(nonatomic,readonly) SHAlertViewShowBlock SH_blockDidShow;
@property(nonatomic,readonly) SHAlertViewDismissBlock SH_blockWillDismiss;
@property(nonatomic,readonly) SHAlertViewDismissBlock SH_blockDidDismiss;
@property(nonatomic,readonly) SHAlertViewFirstButtonEnabledBlock SH_blockForFirstButtonEnabled;

Contact

If you end up using SHAlertViewBlocks in a project, I'd love to hear about it.

email: seivan.heidari@icloud.com
twitter: @seivanheidari

License

SHAlertViewBlocks is © 2013 Seivan and may be freely distributed under the MIT license. See the LICENSE.md file.

About

Prefixed UIAlertView category with blocks - Swizzle and libffi free!

Resources

Stars

8 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages