便捷的使用系统AlertController弹框

阅读此篇文章前建议阅读前篇Block的多种使用场景

在封装AlertController前,先复习一下AlertController的用法,showTime

UIAlertController *alertC = [UIAlertController alertControllerWithTitle:@"标题" message:@"提示语" preferredStyle:UIAlertControllerStyleActionSheet];
UIAlertAction *action1 = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
        
}];
UIAlertAction *action2 = [UIAlertAction actionWithTitle:@"默认风格" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

}];
[alertC addAction:action1];
[alertC addAction:action2];
[self presentViewController:alertC animated:YES completion:nil];

虽然系统的调用方法也是很简洁,如果只使用一次的话,那没关系,但是如果多个地方要使用的时候,你就会发现代码量不少、步骤也重复,所以不方便

image.png

第一次尝试使用思维导图整理逻辑(比较丑,我们就将就点),如上图所示,我们以“分-总”的方式分析
要封装的控件:
AlertController和AlertAction
输入的内容:
有两种,一种是只有一次(A),另一种是自由配置(B)。对于"A"的情况,考虑的就是在API处直接添加入参则可以,而对于B则使用建模的方式配置,如AlertActionModel(基本属性:title、style)
响应:
这也是相同的道理,在封装功能的时候对一些可配置和一些只调用一次额做分类,这样更能清楚在API处要暴露什么入参或回调。对此,“展示present”的跳转则不会暴露,而AlertAction的点击响应则需要公开出来

根据上面的分析,API总体的构成要素基本是定下来的,如下


image.png

而功能的调用方式,本人是考虑使用ViewController的分类,也符合MVC和MVVM主流设计模式中ViewController的功能职责,不会有冲突

开始撸代码...(代码都带有注释,就不解释了)

//UIViewController+LZAlertViewController.m文件

#import <UIKit/UIKit.h>

@class LZAlertController;

#pragma mark - I LZAlertController构造
/**
 alertAction配置链

 @param title 标题
 @return LZAlertController对象
 */
typedef LZAlertController *_Nonnull (^LZAlertActionTitle)(NSString * _Nonnull title);

/**
 alertz按钮执行回调

 @param buttonIndex 按钮index
 @param action UIAlertAction对象
 @param alertSelf 本类对象
 */
typedef void (^LZAlertActionBlock)(NSInteger buttonIndex, UIAlertAction * _Nonnull action, LZAlertController * _Nonnull alertSelf);

@interface LZAlertController : UIAlertController
/* alert弹出后,可配置的回调 **/
@property (nullable, nonatomic, copy) void (^alertDidShown)(void);
/* alert关闭后, 可配置的回调 **/
@property (nullable, nonatomic, copy) void (^alertDidDismiss)(void);
/* 设置toast模式展示时间:如果alert未添加任何按钮,将会以toast样式展示,默认一秒 **/
@property(nonatomic,assign ) NSTimeInterval  toastStyleDuration;

/**
 禁用alert弹出动画,默认执行系统的默认弹出动画
 */
- (void)alertAnimateDisabled;

/**
 链式构造alert视图按钮,添加一个alertAction按钮,默认样式,参数为标题

 @return LZAlertController 对象
 */
- (LZAlertActionTitle _Nonnull )addActionDefaultTitle;

/**
 链式构造alert视图按钮,添加一个alertAction按钮,取消样式,参数为标题

 @return LZAlertController 对象
 */
- (LZAlertActionTitle _Nonnull )addActionCancleTitle;

/**
 链式构造alert视图按钮,添加一个alertAction按钮,警告样式,参数为标题

 @return LZAlertController 对象
 */
- (LZAlertActionTitle _Nonnull )addActionDestructiveTitle;

@end



#pragma mark - II 类别
/* alert构造块 **/
typedef void (^LZAlertAppearanceProcess)(LZAlertController * _Nonnull alertMaker);

@interface UIViewController (LZAlertViewController)

/**
 show-alert(iOS_8.0)

 @param title title
 @param message message
 @param appearanceProcesss alert配置过程
 @param actionBlock alert点击响应回调
 */
- (void)lz_showAlertWithTitle:(nullable NSString *)title
                      message:(nullable NSString *)message
            appearanceProcess:(LZAlertAppearanceProcess _Nonnull )appearanceProcesss
                 actionsBlock:(nullable LZAlertActionBlock)actionBlock;

/**
 show-actionSheet(iOS_8.0)

 @param title title
 @param message message
 @param appearanceProcess actionSheet配置过程
 @param actionBlock actionSheet点击响应回调
 */
- (void)lz_showActionSheetWithTitle:(nullable NSString *)title
                            message:(nullable NSString *)message
                  appearanceProcess:(LZAlertAppearanceProcess _Nonnull )appearanceProcess
                       actionsBlock:(nullable LZAlertActionBlock)actionBlock;

@end
//UIViewController+LZAlertViewController.m文件

#import "UIViewController+LZAlertViewController.h"

/* 默认展示时间 **/
static NSTimeInterval const LZAlertShowDurationDefault = 1.0f;

#pragma mark - I AlertActionModel
@interface LZAlertActionModel : NSObject
@property(nonatomic,copy ) NSString *title;
@property(nonatomic,assign ) UIAlertActionStyle  style;
@end

@implementation LZAlertActionModel
- (instancetype)init {
    if (self = [super init]) {
        self.title = @"";
        self.style = UIAlertViewStyleDefault;
    }
    return self;
}
@end

#pragma mark - II LZAlertController
/* alertActions 配置 **/
typedef void (^LZAlertAcitionsConfig)(LZAlertActionBlock actionBlock);

@interface LZAlertController()
/* alertActionModel数组 **/
@property(nonatomic,strong) NSMutableArray <LZAlertActionModel *> *alertActionArray;
/* 是否执行动画 **/
@property(nonatomic,assign) BOOL  setAlertAnimated;

/**
 action配置
 */
- (LZAlertAcitionsConfig)alertActionsConfig;

@end

@implementation LZAlertController

- (void)viewDidLoad {
    [super viewDidLoad];
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
}

- (void)viewDidDisappear:(BOOL)animated {
    [super viewDidDisappear:animated];
    if (self.alertDidDismiss) {
        self.alertDidDismiss();
    }
}

#pragma mark - private
- (NSMutableArray<LZAlertActionModel *> *)alertActionArray {
    if (_alertActionArray == nil) {
        _alertActionArray = [NSMutableArray array];
    }
    return _alertActionArray;
}


- (LZAlertAcitionsConfig)alertActionsConfig {
    return ^(LZAlertActionBlock actionBlock){
        if (self.alertActionArray.count>0) {
            //创建alertAction
            __weak typeof(self)weakSelf = self;
            [self.alertActionArray enumerateObjectsUsingBlock:^(LZAlertActionModel * actionModel, NSUInteger idx, BOOL * _Nonnull stop) {
                UIAlertAction *alertAction = [UIAlertAction actionWithTitle:actionModel.title style:actionModel.style handler:^(UIAlertAction * _Nonnull action) {
                    __strong typeof(weakSelf)strongSelf = weakSelf;
                    if (actionBlock) {
                        actionBlock(idx,action,strongSelf);
                    }
                }];
                [self addAction:alertAction];
            }];
        
        }
        else
        {
            NSTimeInterval duration = self.toastStyleDuration > 0 ? self.toastStyleDuration : LZAlertShowDurationDefault;
            dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(duration * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
                [self dismissViewControllerAnimated:!(self.setAlertAnimated) completion:NULL];
            });
        }

    };
}

#pragma mark - Public
- (instancetype)initAlertControllerWithTitle:(NSString *)title message:(NSString *)message preferredStyle:(UIAlertControllerStyle)preferredStyle {
    if (!(title.length>0) && (message.length>0) && preferredStyle == UIAlertControllerStyleAlert) {
        title = @"";
    }
    self = [[self class] alertControllerWithTitle:title message:message preferredStyle:preferredStyle];
    if (!self) return nil;
    
    self.setAlertAnimated = NO;
    return self;
}

- (void)alertAnimateDisabled {
    self.setAlertAnimated = YES;
}

- (LZAlertActionTitle)addActionDefaultTitle {
    return ^(NSString *title){
        LZAlertActionModel *actionModel = [[LZAlertActionModel alloc]init];
        actionModel.title = title;
        actionModel.style = UIAlertActionStyleDefault;
        [self.alertActionArray addObject:actionModel];
        return self;
    };
}


- (LZAlertActionTitle)addActionCancleTitle {
    return ^(NSString *title){
        LZAlertActionModel *actionModel = [[LZAlertActionModel alloc]init];
        actionModel.title = title;
        actionModel.style = UIAlertActionStyleCancel;
        [self.alertActionArray addObject:actionModel];
        return self;
    };
}

- (LZAlertActionTitle)addActionDestructiveTitle {
    return ^(NSString *title){
        LZAlertActionModel *actionModel = [[LZAlertActionModel alloc]init];
        actionModel.title = title;
        actionModel.style = UIAlertActionStyleDestructive;
        [self.alertActionArray addObject:actionModel];
        return self;
    };
}


@end


#pragma mark - III 类别
@implementation UIViewController (LZAlertViewController)

- (void)lz_showAlertWithPreferredStyle:(UIAlertControllerStyle)preferredStyle title:(NSString *)title message:(NSString *)message appearanceProcess:(LZAlertAppearanceProcess)appearanceProcess actionsBlock:(LZAlertActionBlock)actionBlock {
    if (appearanceProcess) {
        LZAlertController *alertMaker = [[LZAlertController alloc]initAlertControllerWithTitle:title message:message preferredStyle:preferredStyle];
        //防止nil
        if (alertMaker == nil) {
            return;
        }
        //加工链:添加alertAction
        appearanceProcess(alertMaker);
        //配置响应
        alertMaker.alertActionsConfig(actionBlock);
        
        if (alertMaker.alertDidShown) {
            [self presentViewController:alertMaker animated:!alertMaker.setAlertAnimated completion:^{
                alertMaker.alertDidShown();
            }];
        }
        else{
            [self presentViewController:alertMaker animated:!alertMaker.setAlertAnimated completion:NULL];
        }
    }
}


- (void)lz_showAlertWithTitle:(NSString *)title message:(NSString *)message appearanceProcess:(LZAlertAppearanceProcess)appearanceProcesss actionsBlock:(LZAlertActionBlock)actionBlock {
    [self lz_showAlertWithPreferredStyle:UIAlertControllerStyleAlert title:title message:message appearanceProcess:appearanceProcesss actionsBlock:actionBlock];
}


- (void)lz_showActionSheetWithTitle:(NSString *)title message:(NSString *)message appearanceProcess:(LZAlertAppearanceProcess)appearanceProcess actionsBlock:(LZAlertActionBlock)actionBlock {
    [self lz_showAlertWithPreferredStyle:UIAlertControllerStyleActionSheet title:title message:message appearanceProcess:appearanceProcess actionsBlock:actionBlock];
}

@end
//调用

[self lz_showAlertWithTitle:@"AlertViewTest" message:@"" appearanceProcess:^(LZAlertController * _Nonnull alertMaker) {
        alertMaker.addActionDefaultTitle(@"默认样式");
        alertMaker.addActionDestructiveTitle(@"警告样式");
        alertMaker.addActionCancleTitle(@"取消样式");
    } actionsBlock:^(NSInteger buttonIndex, UIAlertAction * _Nonnull action, LZAlertController * _Nonnull alertSelf) {
        NSLog(@"点击了第%ld个",buttonIndex);
    }];


[self lz_showActionSheetWithTitle:@"SheetViewTest" message:@"" appearanceProcess:^(LZAlertController * _Nonnull alertMaker) {
        alertMaker.addActionDefaultTitle(@"默认样式");
        alertMaker.addActionDestructiveTitle(@"警告样式");
        alertMaker.addActionCancleTitle(@"取消样式");
    } actionsBlock:^(NSInteger buttonIndex, UIAlertAction * _Nonnull action, LZAlertController * _Nonnull alertSelf) {
        switch (action.style) {
            case UIAlertActionStyleDefault:
                NSLog(@"默认");
                break;
            case UIAlertActionStyleCancel:
                NSLog(@"取消");
                break;
            case UIAlertActionStyleDestructive:
                NSLog(@"警告");
                break;
                
            default:
                break;
        }
    }];

Gitgub地址 喜欢的朋友打赏个星星,谢谢

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,874评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,102评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,676评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,911评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,937评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,935评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,860评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,660评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,113评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,363评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,506评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,238评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,861评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,486评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,674评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,513评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,426评论 2 352

推荐阅读更多精彩内容