iOS开发-自定制封装AlertView

前言:大家都知道系统自带的UIAlertController用着也挺不错的,那么为什么还要自己定制呢?小编是本着能够实现满足我们某些特定的UI弹窗样式而进行的自定制封装。在此只做了简单的实现demo,希望可以帮助到有需要的猿友们,大家可以在此基础上进行修改,达到满足自己需求的效果。

原理:创建一个view添加在window上,同时添加出现与消失的动画,来展示弹窗弹出与消失的效果。类方法直接输入相应的参数弹出弹窗,使代码更加简洁。

先看效果图如下:


AlertView.gif

下面一起来看代码:
首先创建一个继承于UIView的类,在.h文件中外漏如下方法:

#import <UIKit/UIKit.h>

@interface RHAlertView : UIView

/**
 类方法弹出提示框

 @param title   提示标题
 @param message 提示信息内容
 @param cancel  点击取消回调block
 @param confirm 点击确定回调block
 */
+ (void)showAlertWithTitle:(NSString *)title message:(NSString *)message cancel:(void(^)(void))cancel confirm:(void(^)(void))confirm;

/**
 类方法弹出提示框

 @param title   提示标题
 @param message 提示信息内容
 @param cancel  点击取消回调block
 */
+ (void)showAlertWithTitle:(NSString *)title message:(NSString *)message cancel:(void(^)(void))cancel;

/**
 类方法弹出提示框

 @param title   提示标题
 @param message 提示信息内容
 @param confirm 点击确定回调block
 */
+ (void)showAlertWithTitle:(NSString *)title message:(NSString *)message confirm:(void(^)(void))confirm;
@end

类方法调用,可以直接弹出弹窗,使代码看起来更加简洁。

接下来在.m中来实现这几个方法。
首先要创建控件添加到该view上边,如下:

#pragma mark - init

- (instancetype)initWithFrame:(CGRect)frame {
    
    self = [super initWithFrame:frame];
    
    if (self) {
        
        [self addSubviews];
    }
    return self;
}

- (void)addSubviews {
    
    [self addSubview:self.view_bg];
    [_view_bg addSubview:self.lab_title];
    [_view_bg addSubview:self.lab_message];
    [_view_bg addSubview:self.lab_lineH];
    [_view_bg addSubview:self.btn_cancel];
    [_view_bg addSubview:self.lab_lineV];
    [_view_bg addSubview:self.btn_confirm];
}

- (void)layoutSubviews {
    
    self.frame = [UIApplication sharedApplication].keyWindow.bounds;
}

#pragma mark - button event

- (void)clickCancel:(UIButton *)sender {
    
    if (self.cancelBlock) {
        
        self.cancelBlock();
    }
    [self remove];
}

- (void)clickConfirm:(UIButton *)sender {
    
    if (self.confirmBlock) {
        
        self.confirmBlock();
    }
    [self remove];
}

#pragma mark - setter and getter

- (UIView *)view_bg {
    
    if (!_view_bg) {
        
        _view_bg = [[UIView alloc] init];
        _view_bg.backgroundColor = [UIColor whiteColor];
        _view_bg.layer.cornerRadius = 5.0;
        _view_bg.layer.masksToBounds = YES;
        _view_bg.alpha = 0;
    }
    return _view_bg;
}

- (UILabel *)lab_title {
    
    if (!_lab_title) {
        
        _lab_title = [[UILabel alloc] init];
        _lab_title.font = [UIFont boldSystemFontOfSize:17];
        _lab_title.textAlignment = NSTextAlignmentCenter;
        _lab_title.numberOfLines = 0;
    }
    return _lab_title;
}

- (UILabel *)lab_message {
    
    if (!_lab_message) {
        
        _lab_message = [[UILabel alloc] init];
        _lab_message.font = [UIFont systemFontOfSize:13];
        _lab_message.textAlignment = NSTextAlignmentCenter;
        _lab_message.numberOfLines = 0;
    }
    return _lab_message;
}

- (UILabel *)lab_lineH {
    
    if (!_lab_lineH) {
        
        _lab_lineH = [[UILabel alloc] init];
        _lab_lineH.backgroundColor = Color_RGB(230, 230, 230);
    }
    return _lab_lineH;
}

- (UILabel *)lab_lineV {
    
    if (!_lab_lineV) {
        
        _lab_lineV = [[UILabel alloc] init];
        _lab_lineV.backgroundColor = Color_RGB(230, 230, 230);
    }
    return _lab_lineV;
}

- (UIButton *)btn_cancel {
    
    if (!_btn_cancel) {
        
        _btn_cancel = [[UIButton alloc] init];
        _btn_cancel.titleLabel.font = [UIFont systemFontOfSize:16];
        [_btn_cancel setTitle:@"取消" forState:UIControlStateNormal];
        [_btn_cancel setTitleColor:Color_RGB(69, 111, 239) forState:UIControlStateNormal];
        [_btn_cancel addTarget:self action:@selector(clickCancel:) forControlEvents:UIControlEventTouchUpInside];
    }
    return _btn_cancel;
}

- (UIButton *)btn_confirm {
    
    if (!_btn_confirm) {
        
        _btn_confirm = [[UIButton alloc] init];
        _btn_confirm.titleLabel.font = [UIFont systemFontOfSize:16];
        [_btn_confirm setTitle:@"确定" forState:UIControlStateNormal];
        [_btn_confirm setTitleColor:Color_RGB(55, 55, 55) forState:UIControlStateNormal];
        [_btn_confirm addTarget:self action:@selector(clickConfirm:) forControlEvents:UIControlEventTouchUpInside];
    }
    return _btn_confirm;
}

这里,小编只是创建了几个常用控件添加到了self上边,大家可以根据自己的需求进行修改,定义需要的控件添加到self上边。大家可以看到,这里并没有给所有的控件添加约束,只设置selfframe等于window的bounds。小编是这么想的,由于传入的标题和内容字数不固定,所以所有的约束在设置好标题和内容之后再进行添加。

下面我们来实现在.h中外漏的几个方法:

/**
 类方法弹出提示框
 
 @param title   提示标题
 @param message 提示信息内容
 @param cancel  点击取消回调block
 @param confirm 点击确定回调block
 */
+ (void)showAlertWithTitle:(NSString *)title message:(NSString *)message cancel:(void(^)(void))cancel confirm:(void(^)(void))confirm {
    
    RHAlertView * alert = [[RHAlertView alloc] init];

    //计算title和message需要的高度,并赋值
    CGFloat titleHeight = 0;
    CGFloat messageHeight = 0;
    if (title.length == 0 && message.length == 0) {
        
        alert.lab_message.text = @"输入title和message为空";
        messageHeight = [alert getHeightByText:alert.lab_message.text font:[UIFont systemFontOfSize:13] width:Label_Width] + 2;
    } else if (title.length == 0) {
        
        alert.lab_message.text = message;
        messageHeight = [alert getHeightByText:message font:[UIFont systemFontOfSize:13] width:Label_Width] + 2;
    } else if (message.length == 0) {
        
        alert.lab_title.text = title;
        titleHeight = [alert getHeightByText:alert.lab_title.text font:[UIFont boldSystemFontOfSize:17] width:Label_Width] + 2;
    } else {
        
        alert.lab_title.text = title;
        alert.lab_message.text = message;
        
        titleHeight = [alert getHeightByText:alert.lab_title.text font:[UIFont boldSystemFontOfSize:17] width:Label_Width] + 2;
        messageHeight = [alert getHeightByText:message font:[UIFont systemFontOfSize:13] width:Label_Width] + 2;
    }

    // 添加约束
    [alert makeConstraintsWithAlert:alert titleHeight:titleHeight message:messageHeight isShowCancel:YES isShowConfirm:YES];

    // 设置block
    if (cancel) {
        
        alert.cancelBlock = cancel;
    }
    if (confirm) {
        
        alert.confirmBlock = confirm;
    }

    // 弹窗弹出
    [alert show:alert];
}

/**
 类方法弹出提示框
 
 @param title   提示标题
 @param message 提示信息内容
 @param cancel  点击取消回调block
 */
+ (void)showAlertWithTitle:(NSString *)title message:(NSString *)message cancel:(void(^)(void))cancel {
    
    RHAlertView * alert = [[RHAlertView alloc] init];
    
    CGFloat titleHeight = 0;
    CGFloat messageHeight = 0;
    if (title.length == 0 && message.length == 0) {
        
        alert.lab_message.text = @"输入title和message为空";
        messageHeight = [alert getHeightByText:alert.lab_message.text font:[UIFont systemFontOfSize:13] width:Label_Width] + 2;
    } else if (title.length == 0) {
        
        alert.lab_message.text = message;
        messageHeight = [alert getHeightByText:message font:[UIFont systemFontOfSize:13] width:Label_Width] + 2;
    } else if (message.length == 0) {
        
        alert.lab_title.text = title;
        titleHeight = [alert getHeightByText:alert.lab_title.text font:[UIFont boldSystemFontOfSize:17] width:Label_Width] + 2;
    } else {
        
        alert.lab_title.text = title;
        alert.lab_message.text = message;
        
        titleHeight = [alert getHeightByText:alert.lab_title.text font:[UIFont boldSystemFontOfSize:17] width:Label_Width] + 2;
        messageHeight = [alert getHeightByText:message font:[UIFont systemFontOfSize:13] width:Label_Width] + 2;
    }
    
    [alert makeConstraintsWithAlert:alert titleHeight:titleHeight message:messageHeight isShowCancel:YES isShowConfirm:NO];
    
    if (cancel) {
        
        alert.cancelBlock = cancel;
    }
    [alert show:alert];
}

/**
 类方法弹出提示框
 
 @param title   提示标题
 @param message 提示信息内容
 @param confirm 点击确定回调block
 */
+ (void)showAlertWithTitle:(NSString *)title message:(NSString *)message confirm:(void(^)(void))confirm {
    
    RHAlertView * alert = [[RHAlertView alloc] init];
    
    CGFloat titleHeight = 0;
    CGFloat messageHeight = 0;
    if (title.length == 0 && message.length == 0) {
        
        alert.lab_message.text = @"输入title和message为空";
        messageHeight = [alert getHeightByText:alert.lab_message.text font:[UIFont systemFontOfSize:13] width:Label_Width] + 2;
    } else if (title.length == 0) {
        
        alert.lab_message.text = message;
        messageHeight = [alert getHeightByText:message font:[UIFont systemFontOfSize:13] width:Label_Width] + 2;
    } else if (message.length == 0) {
        
        alert.lab_title.text = title;
        titleHeight = [alert getHeightByText:alert.lab_title.text font:[UIFont boldSystemFontOfSize:17] width:Label_Width] + 2;
    } else {
        
        alert.lab_title.text = title;
        alert.lab_message.text = message;
        
        titleHeight = [alert getHeightByText:alert.lab_title.text font:[UIFont boldSystemFontOfSize:17] width:Label_Width] + 2;
        messageHeight = [alert getHeightByText:message font:[UIFont systemFontOfSize:13] width:Label_Width] + 2;
    }
    
    [alert makeConstraintsWithAlert:alert titleHeight:titleHeight message:messageHeight isShowCancel:NO isShowConfirm:YES];
    
    if (confirm) {
        
        alert.confirmBlock = confirm;
    }
    
    [alert show:alert];
}

#pragma mark - private

- (CGFloat)getHeightByText:(NSString *)text font:(UIFont *)font width:(CGFloat)width {
    
    UILabel * label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, width, 0)];
    label.text = text;
    label.font = font;
    label.numberOfLines = 0;
    [label sizeToFit];
    CGFloat height = label.frame.size.height;
    return height;
}

- (void)show:(RHAlertView *)alert {
    
    UIWindow * window = [UIApplication sharedApplication].keyWindow;
    [window addSubview:alert];
    
    [UIView animateWithDuration:0.25 animations:^{
        
        alert.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.3];
        alert.view_bg.alpha = 1.0;
    }];
}

- (void)remove {
    
    __weak typeof(self)weakSelf = self;
    
    [UIView animateWithDuration:0.25 animations:^{
        
        weakSelf.alpha = 0;
    } completion:^(BOOL finished) {
        
        [weakSelf removeFromSuperview];
    }];
}

- (void)makeConstraintsWithAlert:(RHAlertView *)alert titleHeight:(CGFloat)titleHeight message:(CGFloat)messageHeight isShowCancel:(BOOL)isShowCancel isShowConfirm:(BOOL)isShowConfirm {
    
    CGFloat viewHeight = Button_Height + 1;
    
    if (titleHeight > 0 && messageHeight > 0) {
        
        viewHeight = viewHeight + 20 + messageHeight + 15 + titleHeight + 20;
    } else if (titleHeight > 0) {
        
        viewHeight = viewHeight + 20 + titleHeight + 20;
    } else if (messageHeight > 0) {
        
        viewHeight = viewHeight + 20 + messageHeight + 20;
    }
    
    // viewBG
    [alert.view_bg makeConstraints:^(RHConstraintMaker *maker) {
        
        maker.centerX(0);
        maker.centerY(0);
        maker.width(BG_Width);
        maker.height(viewHeight);
    }];
    // labTitle
    [alert.lab_title makeConstraints:^(RHConstraintMaker *maker) {
        
        maker.centerX(0);
        maker.top(20);
        maker.width(Label_Width);
        maker.height(titleHeight);
    }];
    // labMessage
    [alert.lab_message makeConstraints:^(RHConstraintMaker *maker) {
        
        maker.centerX(0);
        maker.bottom(-Button_Height - 1 - 20);
        maker.width(Label_Width);
        maker.height(messageHeight);
    }];
    // lineH
    [alert.lab_lineH makeConstraints:^(RHConstraintMaker *maker) {
        
        maker.left(0);
        maker.bottom(-Button_Height);
        maker.right(0);
        maker.height(1);
    }];
    
    if (isShowCancel && isShowConfirm) {
        
        // btnCancel
        [alert.btn_cancel makeConstraints:^(RHConstraintMaker *maker) {
            
            maker.left(0);
            maker.bottom(0);
            maker.width(Button_Width);
            maker.height(Button_Height);
        }];
        // btnConfirm
        [alert.btn_confirm makeConstraints:^(RHConstraintMaker *maker) {
            
            maker.right(0);
            maker.bottom(0);
            maker.width(Button_Width);
            maker.height(Button_Height);
        }];
        // lineV
        [alert.lab_lineV makeConstraints:^(RHConstraintMaker *maker) {
            
            maker.centerX(0);
            maker.bottom(0);
            maker.width(1);
            maker.height(Button_Height);
        }];
    } else if (isShowCancel) {
        
        [alert.btn_confirm removeFromSuperview];
        [alert.lab_lineV removeFromSuperview];
        // btnCancel
        [alert.btn_cancel makeConstraints:^(RHConstraintMaker *maker) {
            
            maker.left(0);
            maker.bottom(0);
            maker.right(0);
            maker.height(Button_Height);
        }];
    } else if (isShowConfirm) {
        
        [alert.btn_cancel removeFromSuperview];
        [alert.lab_lineV removeFromSuperview];
        // btnConfirm
        [alert.btn_confirm makeConstraints:^(RHConstraintMaker *maker) {
            
            maker.right(0);
            maker.bottom(0);
            maker.left(0);
            maker.height(Button_Height);
        }];
    }
}

由于titlemessage高度不固定,所以添加约束之前要先计算他们需要的高度各是多少。这里的添加约束是小编使用系统原生NSLayoutConstraint简单封装的一个添加约束的工具类,大家可以修改为自己常使用的添加约束工具类。到此,封装就完成了。

下面,我们来看一下如何使用:

- (void)viewDidLoad {
    [super viewDidLoad];
    
    UIButton * btn = [[UIButton alloc] initWithFrame:CGRectMake(100, 100, 100, 40)];
    btn.backgroundColor = [UIColor orangeColor];
    [btn setTitle:@"ShowAlert" forState:UIControlStateNormal];
    [btn addTarget:self action:@selector(clickButton:) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:btn];
}


- (void)clickButton:(UIButton *)sender {
    
    [RHAlertView showAlertWithTitle:@"AlertView_Title" message:@"AlertView_Message:今天是个好天气!适合出去游玩,但是没有人陪伴,所以只能独自在家撸代码!" cancel:^{
        
        NSLog(@"点击了取消!");
    } confirm:^{
        
        NSLog(@"点击了确定!");
    }];
    
//    [RHAlertView showAlertWithTitle:@"AlertView_Title" message:@"AlertView_Message:今天是个好天气!适合出去游玩,但是没有人陪伴,所以只能独自在家撸代码!" cancel:^{
//        
//        NSLog(@"点击了取消!");
//    }];
//    
//    [RHAlertView showAlertWithTitle:@"AlertView_Title" message:@"AlertView_Message:今天是个好天气!适合出去游玩,但是没有人陪伴,所以只能独自在家撸代码!" confirm:^{
//        
//        NSLog(@"点击了确定!");
//    }];
}

大家可以明显看到,代码非常的简洁,并且使用方法非常的简单。

如果还有什么不清晰的地方,欢迎随时提问,小编会在看到的第一时间回复。demo下载地址:https://github.com/guorenhao/RHAlertView.git

最后,希望能够帮助到有需要的猿友们,希望同是程序猿的我们能够共同进步,在开发的道路上越走越远!祝大家生活愉快!谢谢!

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念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

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 172,047评论 25 707
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,090评论 4 62
  • 什么更重要?当摆在面前的有两个选项时,什么更重要是一个很容易回答的问题,能否选择可能有点“辛苦”却更为重要的事情去...
    随意咖啡阅读 235评论 0 0
  • 日精进 郑州 坚持原创分享第76天 2017年9月12日 星期二 晴 宝宝爱上学,爱上老师,爱上同学,想必是当家长...
    小莲蓬儿阅读 144评论 0 0
  • 上面我大概说了一些话,我是怀着怎样的心情去写这个故事的。 诸位看官肯定看过黑夜,我想那很正常,就像越过千山万水的夕...
    黑袍客阅读 98评论 0 0