Skip to content

Latest commit

 

History

History
executable file
·
43 lines (32 loc) · 1.13 KB

README.md

File metadata and controls

executable file
·
43 lines (32 loc) · 1.13 KB

UIAlertController+Show

Light-weight extension that adds -show method to UIAlertController. Presenting UIAlertControllers from anywhere, just like UIAlertView.

##Example Usage

This extension provides an API for UIAlertController that mimics the interface for UIAlertViews.

Example in Objective-C:

UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Hello"
                                                                         message:@"Just like UIAlertViews!"
                                                                  preferredStyle:UIAlertControllerStyleAlert];

[alertController show];

Example in Swift:

let alertController = UIAlertController(title: "Hello",
                                        message: "Just like UIAlertViews!",
                                        preferredStyle: .Alert))

alertController.show()

##Setup via CocoaPods

Add UIAlertController+Show to your Podfile

pod 'UIAlertController+Show'

Then, import the framework where needed.

Objective-C:

@import UIAlertController_Show;

Swift:

import UIAlertController_Show