https://github.com/podkovyrin/misalertcontroller
Add support for UIAlertController API to iOS7+. Uses UIAlertController (iOS 8+) and UIAlertView / UIAlertSheet (iOS 7) behind the scenes.
https://github.com/podkovyrin/misalertcontroller
Last synced: 9 months ago
JSON representation
Add support for UIAlertController API to iOS7+. Uses UIAlertController (iOS 8+) and UIAlertView / UIAlertSheet (iOS 7) behind the scenes.
- Host: GitHub
- URL: https://github.com/podkovyrin/misalertcontroller
- Owner: podkovyrin
- License: mit
- Created: 2014-10-26T08:18:21.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-10-26T13:52:33.000Z (about 11 years ago)
- Last Synced: 2025-02-09T01:41:20.779Z (11 months ago)
- Size: 126 KB
- Stars: 0
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
MISAlertController
=============
If you want to use UIAlertController, but still need to support iOS 7 this project is for you.
MISAlertController is a wrapper around UIAlertController and UIAlertView / UIActionSheet. On iOS 7 MISAlertController uses UIAlertView or UIActionSheet and on iOS 8 it uses UIAlertController to show Alerts and Action Sheets.
MISAlertController uses ARC and supports iOS 7.0+
## Usage
First create a ``MISAlertController`` object
```
MISAlertController *alertController = [MISAlertController alertControllerWithTitle:@"Title" message:@"Message" preferredStyle:UIAlertControllerStyleActionSheet];
```
Second, create ``MISAlertAction`` objects
```
MISAlertAction *cancelAction = [MISAlertAction actionWithTitle:NSLocalizedString(@"Cancel", nil) style:UIAlertActionStyleCancel handler:^(MISAlertAction *action) {
NSLog(@"Cancel");
}];
MISAlertAction *actionOne = [MISAlertAction actionWithTitle:NSLocalizedString(@"Action 1", nil) style:UIAlertActionStyleDefault handler:^(MISAlertAction *action) {
NSLog(@"Action 1");
}];
MISAlertAction *actionTwo = [MISAlertAction actionWithTitle:NSLocalizedString(@"Action 2", nil) style:UIAlertActionStyleDefault handler:^(MISAlertAction *action) {
NSLog(@"Action 2");
}];
```
Add actions to controller
```
[alertController addAction:cancelAction];
[alertController addAction:actionOne];
[alertController addAction:actionTwo];
```
Show the controller
```
// Show it from bottom on iPhone and centered on iPad in the view of view controller
// [alertController showInViewController:self animated:YES];
// Show from a source view, from the bottom on iPhone and via a popover on iPad
[alertController showFromSourceView:sender inViewController:self animated:YES];
```
In the sample project you will find how to show an alert view via MISAlertController.
## Creator
[Michael Schneider](http://mischneider.net)
[@maicki](https://twitter.com/maicki)
## License
MISAlertController is available under the MIT license. See the LICENSE file for more info.