Easy way to use UIAlertView/UIAlertController in appropriate iOS version
#import "ELSimpleAlertView.h"ELSimpleAlertView *alertView = [[ELSimpleAlertView alloc] init];
[alertView showAlertViewWithDefaultStyle:@"Hey there"
title:@"Title"
cancelButtonTitle:@"Cancel"
confirmButtonTitle:@"Confirm"
cancelButtonActionCallback:nil
confirmButtonActionCallback:nil
blockArgument:nil];Or see the "ViewController.m" for more example
ELSimpleAlertView is available under the MIT license. See the LICENSE file for more info.

