GithubHelp home page GithubHelp logo

uialertview-hathway's Introduction

UIAlertView-Hathway

This Objective-c category adds a series of convenient class methods to UIAlertView, which allow to easily show alerts and to handle the user response with blocks.

##Installation Include in your Podfile:

pod 'UIAlertView+Hathway'

Then, in your .m files:

#import "UIAlertView+Hathway.h"

##Usage

###Error Alert This helper method shows a standard error alert with "Error" as title, "Ok" as the only button and the given message.

[UIAlertView showErrorAlertWithMessage:@"Oooops, some error happened."];

###Alert with custom Title and Message This helper method shows a standard alert with custom title, "Ok" as the only button and the given message.

[UIAlertView showAlertWithTitle:@"Email not set" message:@"Email is a required field"];

###Alert with custom Title, Message and Button This helper method shows a standard alert with custom title, custom button and the given message.

[UIAlertView showAlertWithTitle:@"Some title" message:@"Some message" buttonTitle:@"Some button text"];

###Confirmation alert This helper method shows a standard alert with custom title, message, Cancel button and custom action button. It provides a boolean result to indicate if the user confirmed the action or cancelled.

[UIAlertView showConfirmationWithTitle:@"Delete entry"
                               message:@"Do you really want to delete this entry?"
                          confirmation:@"Delete"
                       completionBlock:^(UIAlertView *alert, BOOL confirmed) {
                         if (confirmed) {
                            // Proceed to delete entry
                         }
                       }];

Other methods

+ (void)showAlertWithTitle:(NSString *)title
                   message:(NSString *)message
         cancelButtonTitle:(NSString *)cancelButtonTitle
         otherButtonTitles:(NSArray *)otherButtonTitles
           completionBlock:(kAlertIndexBlock)completion;

+ (void)showAlertWithTitle:(NSString *)title
                   message:(NSString *)message
         cancelButtonTitle:(NSString *)cancelButtonTitle
         otherButtonTitles:(NSArray *)otherButtonTitles
      titleCompletionBlock:(kAlertTitleBlock)completion;

uialertview-hathway's People

Contributors

eneko avatar

Watchers

 avatar  avatar James Cloos avatar Frank Canaan avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.