All Projects → marty-suzuki → MOAlertController

marty-suzuki / MOAlertController

Licence: MIT License
No description, website, or topics provided.

Programming Languages

objective c
16641 projects - #2 most used programming language
shell
77523 projects
ruby
36898 projects - #4 most used programming language
c
50402 projects - #5 most used programming language

MOAlertController

Version License Platform

You do not have to consider gap iOS7 and iOS8 when you use UIAlertController!!

MOAlertController has same feature at UIAlertController because it is wapper class for UIAlertController, UIAlertView and UIActionSheet.

  • Alert
  • ActionSheet

iOS7

iOS7

iOS8

iOS8

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.

For Alert

Set MOAlertControllerStyleAlert to preferredStyle.

	MOAlertController *alertController = [MOAlertController alertControllerWithTitle:@"MOAlertController" message:@"This is MOAlertController." preferredStyle:MOAlertControllerStyleAlert];
    
    MOAlertAction *action = [MOAlertAction actionWithTitle:@"Cancel" style:MOAlertActionStyleCancel handler:^(MOAlertAction *action) {
        //Write a code for this action.
    }];
    [alertController addAction:action];
    
    MOAlertAction *action2 = [MOAlertAction actionWithTitle:@"Destructive" style:MOAlertActionStyleDestructive handler:^(MOAlertAction *action) {
        //Write a code for this action.
    }];
    [alertController addAction:action2];
    
    MOAlertAction *action3 = [MOAlertAction actionWithTitle:@"Default" style:MOAlertActionStyleDefault handler:^(MOAlertAction *action) {
        //Write a code for this action.
    }];
    [alertController addAction:action3];
    
    [controller presentViewControllerWithCurrentViewController:self];;
	

For Action Sheet

Set MOAlertControllerStyleActionSheet to preferredStyle.

	MOAlertController *alertController = [MOAlertController alertControllerWithTitle:@"MOAlertController" message:@"This is MOAlertController." preferredStyle:MOAlertControllerStyleActionSheet];
    
    MOAlertAction *action = [MOAlertAction actionWithTitle:@"Cancel" style:MOAlertActionStyleCancel handler:^(MOAlertAction *action) {
        //Write a code for this action.
    }];
    [alertController addAction:action];
    
    MOAlertAction *action2 = [MOAlertAction actionWithTitle:@"Destructive" style:MOAlertActionStyleDestructive handler:^(MOAlertAction *action) {
        //Write a code for this action.
    }];
    [alertController addAction:action2];
    
    MOAlertAction *action3 = [MOAlertAction actionWithTitle:@"Default" style:MOAlertActionStyleDefault handler:^(MOAlertAction *action) {
        //Write a code for this action.
    }];
    [alertController addAction:action3];
    
    [controller presentViewControllerWithCurrentViewController:self];
	

If you want to dismiss, use this method.

[controller dismissViewControllerFromCurrentViewController];

Requirements

  • iOS 7.0 and greater
  • ARC

Installation

MOAlertController is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "MOAlertController"

Author

Taiki Suzuki, [email protected]

License

MOAlertController is available under the MIT license. See the LICENSE file for more info.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].