UIAlertView+AWKit.h
IntroductionUse the links in the table of contents to the left to access the documentation. Methods
alertWithTitle:message:cancelButtonTitle:+ (UIAlertView*)alertWithTitle:(NSString*)title message:(NSString*)message cancelButtonTitle:(NSString*)cancelButtonTitle; ParametersDiscussionCreates a UIAlertView Must be used on the main thread: alertWithTitle:message:cancelButtonTitle:onCancel:+ (UIAlertView*)alertWithTitle:(NSString*)title message:(NSString*)message cancelButtonTitle:(NSString*)cancelButtonTitle onCancel:(AWAlertViewDidCancelBlock)cancelled; ParametersDiscussionCreates a UIAlertView with optional cancel block Must be used on the main thread: alertWithTitle:message:cancelButtonTitle:otherButtonTitles:onCancel:onDismiss:+ (UIAlertView*)alertWithTitle:(NSString*)title message:(NSString*)message cancelButtonTitle:(NSString*)cancelButtonTitle otherButtonTitles:(NSArray*)otherButtons onCancel:(AWAlertViewDidCancelBlock)cancelled onDismiss:(AWAlertViewDidDismissBlock)dismissed; ParametersDiscussionCreates a UIAlertView with optional cancel and dismissal blocks Must be used on the main thread: initWithTitle:message:cancelButtonTitle:otherButtonTitles:onCancel:onDismiss:- (id)initWithTitle:(NSString*)title message:(NSString*)message cancelButtonTitle:(NSString*)cancelButtonTitle otherButtonTitles:(NSArray*)otherButtons onCancel:(AWAlertViewDidCancelBlock)onCancel onDismiss:(AWAlertViewDidDismissBlock)onDismiss; ParametersDiscussionCreates a UIAlertView with optional cancel and dismissal blocks Must be used on the main thread: |