MOAlertController 1.1.0

MOAlertController 1.1.0

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Jun 2015

Maintained by Taiki Suzuki.



  • By
  • Taiki Suzuki

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

Author

Taiki Suzuki, [email protected]

License

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