TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Apr 2015 |
Maintained by alexruperez.
UIAlertController compatible iOS >= 5.0
ARAlertController is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'ARAlertController'
ARAlertController.m
ARAlertController.h
To run the example project, clone the repo, and run pod install
from the Example directory first.
ARAlertController *alert = [ARAlertController alertControllerWithTitle:@"My Alert" message:@"This is an alert." preferredStyle:ARAlertControllerStyleAlert];
ARAlertAction* defaultAction = [ARAlertAction actionWithTitle:@"OK" style:ARAlertActionStyleDefault handler:^(ARAlertAction * action) {}];
[alert addAction:defaultAction];
[alert presentInViewController:self animated:YES completion:nil];
Tweet the author @alexruperez, and check out alexruperez's blog: http://alexruperez.com
ARAlertController is available under the MIT license. See the LICENSE file for more info.