iOS8之后新增了UIAlertController
用来取代UIAlertView
以及UIActionSheet
,它整合了以上两个控件的功能,并且提供了更优雅的创建各种选项的方式.
废话不多说,直接上工程.
新建一个工程,在sb里面添加一个Segment用于分别显示UIAlertView
以及UIActionSheet
,添加一个start按钮用于出发弹窗.
点击start触发弹窗,选择alert或者action分别提供两种弹窗模式.
不多废话,直接上代码,注意点都在注释里面写清楚了.
- (IBAction)start:(UIButton *)sender {
UIAlertControllerStyle style;
switch (self.seguement.selectedSegmentIndex) {
case 0:
style = UIAlertControllerStyleAlert;
break;
case 1:
style = UIAlertControllerStyleActionSheet;
break;
default:
break;
}
//初始化alertController
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"TITLE" message:@"MESSAGE" preferredStyle:style];
//初始化3个alertAction,block里面直接是点击了该选项的回调
//UIAlertActionStyleDefault默认样式
UIAlertAction *defaultItem = [UIAlertAction actionWithTitle:@"defaultItem" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
NSLog(@"点击了defaultItem");
}];
//UIAlertActionStyleCancel取消按钮,无论添加顺序如何,cancle强制显示在最下面
UIAlertAction *cancaleItem = [UIAlertAction actionWithTitle:@"cancaleItem" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
NSLog(@"点击了cancaleItem");
}];
//UIAlertActionStyleDestructive警示样式,红色字体
UIAlertAction *destructiveItem = [UIAlertAction actionWithTitle:@"destructiveItem" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
NSLog(@"点击了destructiveItem");
}];
//给alertcontroller添加action事件,会按照添加顺序创建选项
[alertController addAction:defaultItem];
[alertController addAction:cancaleItem];
[alertController addAction:destructiveItem];
//如果是UIAlertControllerStyleAlert样式,还可以添加输入框
if (style == UIAlertControllerStyleAlert) {
[alertController addTextFieldWithConfigurationHandler:^(UITextField *textField) {
textField.font = [UIFont fontWithName:@"AvenirNext-Medium" size:textField.font.pointSize];
textField.placeholder = @"enjoy coding";
}];
}
//弹出alert只需要modal出alertController即可
[self presentViewController:alertController animated:YES completion:nil];
}
最终展示:
我们可以看到,使用UIAlertController不需要在以前的alertview的代理方法里面判断各种index执行各种事件了,无益大大的简化了代码,如果iOS以后请果断放弃alertview跟actionsheet吧,当然alertview跟actionsheet还是可以继续使用的. (求一个不用支持iOS7的公司Orz)
github地址戳这里
have fun~