美文网首页iOS开发攻城狮的集散地
iOS 自定义AlertView(上),类似UIAlertVie

iOS 自定义AlertView(上),类似UIAlertVie

作者: 微威 | 来源:发表于2018-08-29 19:06 被阅读41次

    UIAlertView、UIActionSheet以及iOS 8之后的UIAlertController、UIAlertAction,这几个控件在工作中几乎都会用到。但是有时候产品要求的一些效果,这些控件不能满足;连字体颜色都不能直接修改,这时候无非两种解决办法:要么选择修改系统原生控件、要么选择自定义类似原生效果的控件。

    今天这篇文章主要讲自定义
    YWAlert- https://github.com/flyOfYW/YWAlertView

    一:效果图
    类似系统的效果


    1.png

    类似系统添加多个的效果,当然YWAlert支持横和竖自由选择


    2.png
    自定义message,这里放了一个ImageView
    3.png

    统一参数设置


    4.png

    没有按钮的情况下,可以自由选择把关闭按钮放出


    5.png

    没有标题的情况下,当然也支持没有message的情况下


    6.png

    二:整体组成部分


    11.png

    如图所述
    整个弹框的alertView(由三部分组成:头部(titleView)、身体(bodyView)、尾部(footView))
    根据title和message的存在控制titleView和bodyView;使用AutoLayout布局,
    而bodyView部分分为两种模式:默认文字(label)显示和自定义(custome);
    footView部分也是分为两种模式:默认水平(Default)和竖直(Vertical)

    三:调用的方式以及参数设置
    1、 不直接使用YWAlert调用,而通过继承与NSObject的YWAlertView获取返回协议的对象调用,因为这样更加灵活,YWAlertView在这里可以比作是一个简单的工厂,制作某个规格的控件,而这个规格好比一个Protocol;只要Protocol支持的条件,均可进行定制,而不仅仅局限于YWAlert,YWAlert只是YWAlertView中的一个模式控件,后期还有其他的模式的加入,比如正在计划的ActionSheet

       id <YWAlertViewProtocol>alert = [YWAlertView alertViewWithTitle:@"温馨提示" message:@"Do any additional setup after loading the view,typically from a nib.Do any additional setup after loading the view," delegate:self preferredStyle:YWAlertViewStyleAlert footStyle:YWAlertPublicFootStyleVertical bodyStyle:YWAlertPublicBodyStyleDefalut cancelButtonTitle:@"cancel" otherButtonTitles:@[@"Ok",@"other"]];
        [alert show];
    

    2、参数的设定,正因为使用了Protocol的对象,因为可以舍弃一些属性的参数的控制,因为多模式下,显的冗余

    @protocol YWAlertViewProtocol <NSObject>
    @required
    
    /**
     默认显示在Windows上
     */
    - (void)show;
    /**
     显示在viewController上
     */
    - (void)showOnViewController;
    /**
     隐藏弹框
     */
    - (void)hiddenAlertView;
    /**
     隐藏bodyview上下的两个分隔线
     */
    - (void)hiddenBodyLineView;
    /**
     隐藏所有的分隔线
     */
    - (void)hiddenAllLineView;
    
    //config配置信息
    @optional
    /**
     是否显示关闭的按妞
     */
    - (void)showCloseOnTitleView;
    
    /**
     设置整个弹框的背景颜色
    
     @param color 颜色
     */
    - (void)setAlertViewBackgroundColor:(UIColor *)color;
    /**
     设置titleView的背景颜色
    
     @param color 颜色
     */
    - (void)setTitleViewBackColor:(UIColor *)color;
    /**
     设置titleView的title颜色
    
     @param color 颜色
     */
    - (void)setTitleViewTitleColor:(UIColor *)color;
    /**
     设置message的字体颜色
    
     @param color 颜色
     */
    - (void)setMessageTitleColor:(UIColor *)color;
    /**
     设置所有按钮的字体颜色
    
     @param color 颜色
     */
    - (void)setAllButtionTitleColor:(UIColor *)color;
    /**
     设置单个按钮的颜色
    
     @param color 颜色
     @param index 下标
     */
    - (void)setButtionTitleColor:(UIColor *)color index:(NSInteger)index;
    /**
     自定义bodyview
    
     @param bodyView 需要定义的view
     @param height 该view的高度
     */
    - (void)setCustomBodyView:(UIView *)bodyView height:(CGFloat)height;
    /**
     alert背景图
    
     @param image image
     @param articulation 0~1(越小越清晰)
     */
    - (void)setAlertBackgroundView:(UIImage *)image articulation:(CGFloat)articulation;
    /**
     统一配置信息
    
     @param theme 主题
     */
    - (void)setTheme:(id<YWAlertViewThemeProtocol>)theme;
    

    3、也许还有人觉得,设定一些配置信息比较繁琐,比如,在不同的控制器,每使用弹框的时候,想设定按钮的颜色或者字体大小、颜色等,通常来说,同一个项目里,色调以及风格都是一样。如果每次使用还要频繁设定这么多参数难免会觉得繁琐
    我来告诉你,这个不用担心,我已经替你解决了。

    /**
     统一配置信息
    
     @param theme 主题
     */
    - (void)setTheme:(id<YWAlertViewThemeProtocol>)theme;
    

    那么这个具体是如何使用呢?其实很简单,只要你传入一个继承NSObject的对象同时准守YWAlertViewThemeProtocol这个协议,即可,只要你实现相应的方法,即可

    @protocol YWAlertViewThemeProtocol <NSObject>
    @optional
    /**
     alert背景图
     
     @return im
     */
    - (UIImage *)alertBackgroundView;
    /**
     alert背景图的清晰度
    
     @return 0~1(越小越清晰)
     */
    - (CGFloat)alterBackgroundViewArticulation;
    /**
     alert的背景颜色
    
     @return color
     */
    - (UIColor *)alertBackgroundColor;
    /**
     titleView的颜色
     
     @return color
     */
    - (UIColor *)alertTitleViewColor;
    /**
     蒙层的背景图
     
     @return im
     */
    - (UIImage *)alertGaussianBlurImage;
    /**
     取消按钮的颜色
     
     @return color
     */
    - (UIColor *)alertCancelColor;
    

    具体如何使用,请前去参考
    https://github.com/flyOfYW/YWAlertView

    相关文章

      网友评论

        本文标题:iOS 自定义AlertView(上),类似UIAlertVie

        本文链接:https://www.haomeiwen.com/subject/mjbkwftx.html