UIAlertView/UIAlertController封装使用

  • 基于UIAlertView封装的JXTAlertView,这个是将之前写Demo时搞的一套快捷使用alertView的工具抽离整理出来的,并提供了C函数直接调用,像这样:

    jxt_showAlertTitle(@"简易调试使用alert,单按钮,标题默认为“确定”");

    就可以直接显示出一个alertView。

  • 基于UIAlertController封装的JXTAlertController,支持iOS8及以上。调用方式为UIViewController的扩展分类方法,支持使用链式语法的方式配置alert的按钮及样式,相对于变参或者数组,更加简洁。

  https://github.com/kukumaluCN/JXTAlertManager

1. JXTAlertView 便捷调试工具

之所以叫做快捷调试工具,就是因为这套代码是之前写Demo时搞出来的。所以,如果不是要适配iOS7及以下版本的话,这套代码还是建议只用在平时Demo测试。也因此,并没有针对UIActionSheet再进行封装,说白了是因为懒……

平时写一些Demo代码时,总会用到alert、toast、HUD这些工具,如果没有一套简便的工具,会麻烦很多,所以便从轻量便捷角度出发,基于UIAlertView,封装实现了alert、toast、HUD这些常用工具。

1.1.快捷使用alertView

如果只是简单的一个提示,可以这样使用(这里只是一个示例,详细用法见源码):

jxt_showAlertTitle(@"简易调试使用alert,单按钮,标题默认为“确定”");

其实现是基于:

[JXTAlertView showAlertViewWithTitle:title

message:message

cancelButtonTitle:cancelButtonTitle

otherButtonTitle:otherButtonTitle

cancelButtonBlock:cancelBlock

otherButtonBlock:otherBlock];

这是常用的两个以内的按钮的alertView,也可以这样使用:

jxt_showAlertTwoButton(@"title", @"message", @"cancel", ^(NSInteger buttonIndex) {

NSLog(@"cancel");

}, @"other", ^(NSInteger buttonIndex) {

NSLog(@"other");

});

针对于复杂的多按钮的alertView,还是使用变参方式,按钮响应,根据添加的按钮标题的index号依序区分:

[JXTAlertView showAlertViewWithTitle:@"title"

message:@"message"

cancelButtonTitle:@"cancel"

buttonIndexBlock:^(NSInteger buttonIndex) {

if (buttonIndex == 0) {

NSLog(@"cancel");

}

else if (buttonIndex == 1) {

NSLog(@"按钮1");

}

else if (buttonIndex == 2) {

NSLog(@"按钮2");

}

else if (buttonIndex == 3) {

NSLog(@"按钮3");

}

else if (buttonIndex == 4) {

NSLog(@"按钮4");

}

else if (buttonIndex == 5) {

NSLog(@"按钮5");

}

} otherButtonTitles:@"按钮1", @"按钮2", @"按钮3", @"按钮4", @"按钮5", nil];

1.2.简单的toast

这里的toast提示,有别于传统意义上的toast,因为其是基于alertView实现的,是一个没有按钮的alertView。可自定义展示延时时间,支持关闭回调的配置。

[JXTAlertView showToastViewWithTitle:@"title"

message:@"message"

duration:2

dismissCompletion:^(NSInteger buttonIndex) {

NSLog(@"关闭");

}];

1.3.三种HUD的实现

这里的HUD区别于toast之处在于,其关闭时机可控,并不是单纯的一个延时展示。

三种HUD是指单纯的文字型、带风火轮(菊花)的加载窗、带进度条的加载窗。

后两者用KVC的方式访问了alertView的私有属性accessoryView实现,这样做可能没有太大问题,不过还是不建议线上开发使用,而且利用这种方式访问私有属性本来就是不太安全的,一旦key(私有属性名)改变了,不做容错处理,会崩溃,源码实现中做了一定的容错,但是,一旦对应key变化,也就导致对应功能失效了。

  • 示例代码(C函数方式):

jxt_showLoadingHUDTitleMessage(@"title", @"message");

dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{

jxt_dismissHUD();

});

HUD还有对应的简易的显示加载成功失败状态的方法,以及刷新进度条进度值的方法,详情见Demo。

2. JXTAlertController(iOS8)(链式语法的“隐患”)

JXTAlertController是基于系统的UIAlertController封装的,因此也只能支持iOS8及以上系统版本。

虽然源码中的JXTAlertManagerHeader.h做了一个版本适配,但是,其意义更多在于提示,很可能因此出错,所以,如果要适配iOS7,对应方法还是需要自行适配。

下面都以alert举例,actionSheet同理。

2.1.结构说明

/**

JXTAlertController: show-alert(iOS8)

@param title             title

@param message           message

@param appearanceProcess alert配置过程

@param actionBlock       alert点击响应回调

*/

- (void)jxt_showAlertWithTitle:(nullable NSString *)title

message:(nullable NSString *)message

appearanceProcess:(JXTAlertAppearanceProcess)appearanceProcess

actionsBlock:(nullable JXTAlertActionBlock)actionBlock NS_AVAILABLE_IOS(8_0);

上述方法是针对UIViewController做的分类扩展,详见源码。

也就是在某个VC中使用时,可直接用self指针调用。

JXTAlertAppearanceProcess是配置块,JXTAlertActionBlock是按钮响应回调块。

2.2.链式语法添加按钮

[self jxt_showActionSheetWithTitle:@"title"

message:@"message"

appearanceProcess:^(JXTAlertController * _Nonnull alertMaker) {

alertMaker.

addActionCancelTitle(@"cancel").

addActionDestructiveTitle(@"按钮1").

addActionDefaultTitle(@"按钮2").

addActionDefaultTitle(@"按钮3").

addActionDestructiveTitle(@"按钮4");

} actionsBlock:^(NSInteger buttonIndex, UIAlertAction * _Nonnull action, JXTAlertController * _Nonnull alertSelf) {

if ([action.title isEqualToString:@"cancel"]) {

NSLog(@"cancel");

}

else if ([action.title isEqualToString:@"按钮1"]) {

NSLog(@"按钮1");

}

else if ([action.title isEqualToString:@"按钮2"]) {

NSLog(@"按钮2");

}

else if ([action.title isEqualToString:@"按钮3"]) {

NSLog(@"按钮3");

}

else if ([action.title isEqualToString:@"按钮4"]) {

NSLog(@"按钮4");

}

}];

appearanceProcess配置块中,alertMaker是当前alertController对象,addActionCancelTitle(@"cancel")是添加一个按钮,其等效于:

[alertController addAction:[UIAlertAction actionWithTitle:@"cancel" style:UIAlertActionStyleCancel handler:^(UIAlertAction *_Nonnull action) {

}]];

这里引入了简单的链式语法,可以连续添加系统支持的三类action按钮,当然UIAlertActionStyleCancel这个样式的action只能添加一次。这样可以大大简化代码。

actionsBlock是action按钮响应回调,可以根据index区分响应,index根据执行add的语法链从0依序增加,cancel类型的action布局位置是固定的,和添加顺序无关,但其index与添加顺序有关。

对于复杂或者特殊的alertController,也可以根据action.title或者action区分响应。

2.3.链式语法的“隐患”

用过Masonry这个库的,应该都对链式语法不会太陌生。链式语法可以使得代码简化且逻辑清晰化。但是,其也有一定的“隐患”存在。

Masonry应该是用的最多的一个自动布局的三方库,类似的还有SDAutoLayout(这里只是举例,同样的三方还有很多,这个应该是除了Masonry外,用的相对多一些的一个)这样的,同样的链式语法,后者似乎更加简洁优雅。那为什么大名鼎鼎的Masonry不这么干呢?我想是因为“安全”。

用SDAutoLayout的Demo做一个实验:

view为nil导致的崩溃

这里把view0置为nil,之后运行,程序直接崩溃了。。。这类似于执行一个未赋值的空block。

有人可能会认为这样的实验没有意义,为nil了干嘛还要布局呢?其实这是笔者前阵子在封装一个链式库时遇到的问题:实际应用开发中,情况要复杂很多,有些view是动态添加的,甚至是根据接口数据动态创建的,如果在处理这类代码逻辑中稍有不慎,就会造成上述问题,给不存在的view进行布局,直接导致程序崩溃。。。

其实这也是代码书写规范的问题,针对这类动态view,在处理时,本就应该添加if条件判断的,不过有时容易忽视,或者他人接手相关代码时,也容易忽略。如果用Masonry的块配置布局,就不会发生这类问题,因为这种情况,对于Masonry那种写法,就是一个空指针执行一个方法,其结果就是不执行,而像SDAutoLayout这类的,不作判空处理,就会导致程序崩溃。这里尤其要注意。

2.4.其他配置

针对alert上的输入框,保持系统的添加方式,示例如下:

[self jxt_showAlertWithTitle:@"title"

message:@"message"

appearanceProcess:^(JXTAlertController * _Nonnull alertMaker) {

alertMaker.

addActionDestructiveTitle(@"获取输入框1").

addActionDestructiveTitle(@"获取输入框2");

[alertMaker setAlertDidShown:^{

[self logMsg:@"alertDidShown"];//不用担心循环引用

}];

alertMaker.alertDidDismiss = ^{

[self logMsg:@"alertDidDismiss"];

};

[alertMaker addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {

textField.placeholder = @"输入框1-请输入";

}];

[alertMaker addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {

textField.placeholder = @"输入框2-请输入";

}];

} actionsBlock:^(NSInteger buttonIndex, UIAlertAction * _Nonnull action, JXTAlertController * _Nonnull alertSelf) {

if (buttonIndex == 0) {

UITextField *textField = alertSelf.textFields.firstObject;

[self logMsg:textField.text];//不用担心循环引用

}

else if (buttonIndex == 1) {

UITextField *textField = alertSelf.textFields.lastObject;

[self logMsg:textField.text];

}

}];

对于alert展示和关闭的回调,同样支持以block的方式配置。

如果appearanceProcess块不进行任何配置操作,即无按钮的alert,同样默认以toast模式处理。可通过设置toastStyleDuration属性,配置toast展示延迟时间。

2.5.改变alertController的字体颜色

可以通过KVC的方式访问alertController的私有属性,从而进行修改对应的字体的颜色,甚至字体。

对于UIAlertAction,可以用下面的方式修改字体颜色:

[alertAction setValue:[UIColor grayColor] forKey:@"titleTextColor"];

修改UIAlertAction字体颜色的效果

但是就像前面说的,个人并不推荐这类方式,所以源码中没有提供相关的方法。

如果有对应的特殊需求,总体来说,还是自定义alert视图比较灵活,网上相关的开源库也有很多可以直接使用,不必总是纠结于系统的实现方式。

最后,欢迎使用JXTAlertManager,如果遇到任何问题,请及时联系作者。

参考文章:(链接可到原文查看)

 

1.iOS更改UIActionController弹出字体的样式

2.UIAlertController 简单修改title以及按钮的字体颜色

3.How to add subview inside UIAlertView for iOS 7?

4.UIAlertView addSubview in iOS7

5.iOS UIAlertView中UIActivityindicatorView风火轮提示加载等待

时间: 2024-10-25 06:27:08

UIAlertView/UIAlertController封装使用的相关文章

oc UIAlertController封装

#define SHOWALERT(MESSAGE) \ UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"提示" message:MESSAGE preferredStyle:UIAlertControllerStyleAlert]; UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"确定&q

iOS8以后UIAlertView和UIActionSheet两种alert页面都将通过UIAlertController来创建

1. Important: UIAlertView is deprecated in iOS 8. (Note that UIAlertViewDelegate is also deprecated.) To create and manage alerts in iOS 8 and later, instead use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert. //UIAlertView和UI

iOS 8及以后版本 如何创建UIAlertView?

1. Important: UIAlertView is deprecated in iOS 8. (Note that UIAlertViewDelegate is also deprecated.) To create and manage alerts in iOS 8 and later, instead use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert. //UIAlertView和UI

iOS8中UIAlertController的使用

iOS8中的UIAlertController包括了之前的UIAlertView和UIActionSheet,将它们集合成了自己的style: 1------------UIAlertControllerStyleAlert-----原有的UIAlertView UIAlertController *alertC = [UIAlertController alertControllerWithTitle:@"alertC" message:@"message" pr

UIAlertController custom font, size, color

本文转载至 http://stackoverflow.com/questions/26460706/uialertcontroller-custom-font-size-color up vote2down votefavorite 3 I am using new UIAlertController for showing alerts. I have this code: // nil titles break alert interface on iOS 8.0, so we'll be

iOS总结

1.设置UILabel行间距 NSMutableAttributedString* attrString = [[NSMutableAttributedString  alloc] initWithString:label.text];     NSMutableParagraphStyle *style = [[NSMutableParagraphStyle alloc] init];     [style setLineSpacing:20];     [attrString addAttr

实现对UIAlertController和UIAlertView判断系统后的简单封装

iOS8之后用UIAlertController代替了UIAlertView,所以每次有需要弹窗的时候,都需要先判断系统,最近在做的项目中弹窗较多,如果每次都判断,真是太麻烦了,索性对UIAlertController和UIAlertView进行的封装了,封装在一个工具类中,在工具类中就对系统进行判断,然后在你需要弹窗的界面直接调用这个工具类的方法就可以了,减少了代码的耦合. 这个工具类其实也封装的特别简单,因为都是用的系统的,分享出来给大家参考下: 首先是.h文件 @interface UIA

IOS开发之UIAlertView与UIAlertController的详尽用法说明

本文将从四个方面对IOS开发中UIAlertView与UIAlertController的用法进行讲解: 一.UIAlertView与UIAlertController是什么东东? 二.我们为什么要用UIAlertView或UIAlertController? 三.如何使用UIAlertView和UIAlertController? 四.阅读提醒. 一.UIAlertView与UIAlertController是什么东东? 一句话,在所有移动应用中,出现的提示窗一般都由UIAlertView或U

提示框的使用UIAlertController(UIAlertView和UIActionSheet二合一,包含通知中心的使用)

iOS8推出了几个新的“controller”,主要是把类似之前的UIAlertView变成了UIAlertController,这不经意的改变,貌似把我之前理解的“controller”一下子推翻了-但是也无所谓,有新东西不怕,学会使用了就行.接下来会探讨一下这些个新的Controller. - (void)showOkayCancelAlert { NSString *title = NSLocalizedString(@"A Short Title Is Best", nil);