iOS通用多种样式弹窗(你需要的弹窗都有)

15,722 阅读7分钟

WMZDailog - 功能样式最多的最齐全的的弹窗控件 控件全部采用链式编程,所有属性均可定制

(如果有什么其他有趣的弹窗可以截图给我,我抽时间增加此样式)~ ~

WMZDailog

特性

  • 链式语法 结构优雅
  • 支持单选/多选
  • 支持地区1/2/3级联动
  • 支持无限级联动
  • 支持时间选择
  • 支持支持多种动画
  • 支持所有字体颜色/字体大小的设置
  • 支持支付视图
  • 支持ios13Persent弹窗
  • 支持日历
  • 支持菜单选择
  • 支持自定义弹窗

调用枚举说明

typedef enum : NSUInteger{
    DialogTypeNornal = 1,           //默认弹窗
    DialogTypeSheet,                //底部弹窗
    DialogTypeAuto,                 //默认弹窗自动消失
    DialogTypePay,                  //支付密码框
    DialogTypeShare,                //带分享的弹窗
    DialogTypeWrite,                //带编辑框的弹窗
    DialogTypeSelect,               //带选择的弹窗
    DialogTypePickSelect,           //拾取器弹窗无嵌套
    DialogTypeTime,                 //带倒计时的弹窗
    DialogTypePop,                  //下拉列表选择弹窗
    DialogTypeDown,                 //带下载的弹窗
    DialogTypeMenusSelect,          //下拉无限级菜单弹窗
    DialogTypeAdvertisement,        //广告弹窗
    DialogTypeLocation,             //地区选择
    DialogTypeDatePicker,           //日期选择
    DialogTypeTabbarMenu,           //闲鱼 微博+号底部弹窗
    DialogTypeNaviMenu,             //QQ顶部弹窗
    DialogTypeLoading,              //加载框
    DialogTypeBuyCar ,              //购物车弹窗  可自行导入WMZTags
    DialogTypeCardPresent ,        //ios13 present效果
    DialogTypeCalander,             //日历弹窗
    DialogTypeMyView,               //自定义弹窗
}DialogType;

默认弹窗

DialogTypeNornal.gif

底部弹窗

DialogTypeSheet.gif

自动消失hud弹窗

DialogTypeAuto.gif

支付密码框

DialogTypePay.gif

带分享的弹窗

DialogTypeShare.gif

带编辑框的弹窗

DialogTypeWrite.gif

带选择的弹窗

DialogTypeSelect.gif

拾取器弹窗

DialogTypePickSelect.gif

带倒计时的弹窗

DialogTypeTime.gif

下拉列表选择弹窗

DialogTypePop.gif

带下载的弹窗

DialogTypeDown.gif

下拉无限级菜单弹窗

DialogTypeMenusSelect.gif

地区弹窗

DialogTypeLocation.gif

日期选择弹窗

DialogTypeDatePicker.gif

顶部和底部弹窗

DialogTypeTabbarMenu+DialogTypeNaviMenu.gif

加载框

DialogTypeLoading.gif

购物车弹窗

DialogTypeBuyCar.gif

ios13 present效果

DialogTypeCardPresent.gif

日历弹窗

DialogTypeCalander.gif

自定义弹窗

DialogTypeMyView.gif

参数说明(详情使用看demo)

###DialogTypeNornal/DialogTypeSheet/DialogTypeSelect。。。

可配置通用参数 类型 作用 (默认值)
wData id 数据源
wShowAnimation DialogShowAnination 出现的动画 default AninatonZoomIn
wHideAnimation DialogHideAnination 消失的动画 default none
wAnimationDurtion NSTimeInterval 动画时间 default 0.8
wParentVC UIViewController 父控制器 default 当前VC
wType DialogType 弹窗类型 default DialogTypeNornal
wWidth CGFloat 弹窗视图的宽度 default 500
wHeight CGFloat 弹窗视图的高度 default 自适应高度 300
wMainOffsetY CGFloat Y间距 default 20
wMainOffsetX CGFloat X间距 default 15
wMainBtnHeight CGFloat 按钮高度 default 60
wMyCell UITableViewCell 自定义cell
wMainToBottom BOOL 视图在最底部 default NO
wLineColor UIColor 线条的颜色 default 333333
wLineAlpha CGFLoat 线条的透明度 default 0.5
wTitle NSString 标题文本 default 标题
wMessage NSString 内容文本 default 内容
wOKTitle NSString 确定按钮的文本 default 确定
wCancelTitle NSString 取消按钮的文本 default 取消
wOKColor UIColor 确定按钮的颜色 default 0xFF9900
wCancelColor UIColor 取消按钮的颜色 default 0x666666
wMainBackColor UIColor 弹出视图的背景颜色 default 0xffffff
wTitleColor UIColor 标题文本的颜色 default 0x333333
wMessageColor UIColor 内容文本的颜色 default 0x333333
wOKFont CGFLoat 确定按钮的字体大小 default 16.0f
wCancelFont CGFLoat 取消按钮的字体大小 default 16.0f
wTitleFont CGFLoat 标题文本的字体大小 default 14.0f
wMessageFont CGFLoat 内容文本的字体大小 default 16.0f
wMainRadius CGFLoat 弹出视图的圆角 default 15.0f
wShadowColor UIColor 遮罩层的颜色 default 0x333333
wShadowAlpha CGFLoat 遮罩层的透明度 default 0.4f
wShadowCanTap BOOL 遮罩层能否点击关闭 default YES
wShadowShow BOOL 遮罩层是否显示 default YES
wEffectShow BOOL 毛玻璃是否显示 default NO
wMultipleSelection BOOL 多选 default NO
wSelectShowChecked BOOL 选中是否打钩 default NO
wTextAlignment NSTextAlignment 文本对齐方式 default center

###DialogTypeAuto

DialogTypeAuto参数 类型 作用 (默认值)
wDisappelSecond CGFLoat 自动消失的时间 default 1.5f

###DialogTypePay

DialogTypePay参数 类型 作用 (默认值)
wSonData id 支付方式选择数据源
wKeyBoardMarginY CGFLoat 弹窗与键盘的距离 default 70
wPayNum NSInteger 支付密码位数 default 6(若要设置位数比6大的则要保证宽度足够)
wDefaultSelectPayStr NSString 支付方式默认文本 default 农业银行

###DialogTypeWrite

DialogTypeWrite参数 类型 作用 (默认值)
wPlaceholder NSString 提示语 default 请输入
wWirteTextMaxLine NSInteger 编辑框可换行的最大行数 default 7
wWirteTextMaxNum NSInteger 编辑框可输入的最大数字 default -1(-1为不限制)
wWirteKeyBoardType UIKeyBoardType 编辑框的键盘type default UIKeyboardTypeDefault

###DialogTypePop

DialogTypePop参数 类型 作用 (默认值)
wPercentAngle CGFLoat 弹出的气泡位置 default 0.5f
wPercentOrginX CGFLoat 弹出视图的中心X轴偏移 default 1.0f (中间)
wDirection DiaDirection 弹出视图的方向 default directionDowm
wNavigationItem BOOL 导航栏位置 default NO
wTapView UIView 触发点的视图 default - 必传

###DialogTypeDown

DialogTypeDown参数 类型 作用 (默认值)
wImageSize CGSize 图片的大小 default (50,50)
wImageName NSString 图片路径名字 default -
wProgressTintColor UIColor 进度条闲置时候的颜色 default 0xFF9900
wTrackTintColor UIColor 进度条动作时候的颜色 default 0xF3F4F6

###DialogTypeMenusSelect

DialogTypeMenusSelect参数 类型 作用 (默认值)
wTableViewColor NSArray tableview的背景颜色 default FFFFFF/F6F7FA/EBECF0/666666

###DialogTypeLocation

DialogTypeLocation参数 类型 作用 (默认值)
wLocationType NSInteger 地区关联层级 default 3
wChainType ChainType 关联层级的样式 default ChainPickView
wSeparator NSString 选中数据的分隔符 default ,

###DialogTypeDatePicker

DialogTypeDatePicker参数 类型 作用 (默认值)
wDateTimeType NSString 时间选择器样式 yyyy年MM月dd日HH时mm分ss秒(自由组合) default yyyy:MM:dd HH:mm:ss
wPickRepeat BOOL pickView无限循环 default YES

###Share/tabbarMenu/NaviMENU

Share/tabbarMenu/NaviMENU参数 类型 作用 (默认值)
wColumnCount NSInteger 列 default -
wRowCount NSInteger 行 default -
注意如果设置了行和列 要如期显示 要设置好wHeight

###DialogTypeLoading

DialogTypeLoading参数 类型 作用 (默认值)
wLoadingType LoadingStyle 加载框样式 default LoadingStyleWait
wLoadingSize CGSize 加载框size default (90,90)
wLoadingColor UIColor 加载框线条颜色 default 确定按钮的文本颜色

###DialogTypeCardPresent

DialogTypeCardPresent参数 类型 作用 (默认值)
wOpenScrollClose BOOL 滑动到顶部继续滑动可关闭 default YES
wLeftScrollClose BOOL 测滑可关闭 default YES
wOpenDragging BOOL 开启拖动 default YES
wScaleParentVC BOOL 缩放底部控制器 default YES
wParentHeadView - 自定义顶部视图 default -
wParentBottomView - 自定义底部视图 default -

###DialogTypeCalander

DialogTypeCalander参数 类型 作用 (默认值)
wDirectionVertical BOOL 开启纵向滑动 default NO(横向滑动)
wCalanderCanScroll BOOL 开启滑动 default YES
wOpenChineseDate BOOL 开启农历节日显示 default YES
wHideCalanderBtn BOOL 隐藏日历上的操作按钮 default YES
wDateShowCircle NSArray 展示圆点的日期@[[NSDate date]] default -
wReginerCollectionCell NSString 注册自定义的collectionViewCell default -

###DialogTypeMyView

DialogTypeMyView参数 类型 作用 (默认值)
wAddBottomView BOOL 是否添加底部按钮 default NO

###Events

Events 作用 (默认值)
wEventOKFinish 确定点击事件
wEventCancelFinish 取消点击事件(不传默认没有取消按钮)
wEventFinish 所有的操作事件
wEventClose 弹窗关闭事件
wEventMenuClick 菜单点击事件
wSelectCell 自定义cell点击
wMyCell 自定义cell
wMyDiaLogView 自定义弹窗View(返回最底部的view)
wCalanderCell 自定义日历cell
wCalanderCellClick 自定义日历点击

用法

默认模式

  Dialog().wTypeSet(DialogTypeNornal).wStart();

多选模式

  Dialog().wTypeSet(type)
           .wEventOKFinishSet(^(id anyID, id otherData) {
                NSLog(@"%@",anyID);
            })
            //出现动画
            .wShowAnimationSet(AninationCombineTwo)
            .wTitleSet(@"")
            .wMultipleSelectionSet(YES).wSelectShowCheckedSet(YES)
            .wDataSet(@[@"游泳",@"打篮球",@"打羽毛球",@"爬山",@"踢足球",@"乒乓球"])
            .wStart();

自定义弹窗(优酷) 更多自定义弹窗看demo

 myAlert = Dialog()
.wTypeSet(DialogTypeMyView)
//关闭事件 此时要置为不然会内存泄漏
.wEventCloseSet(^(id anyID, id otherData) {
    myAlert = nil;
})
.wShowAnimationSet(AninatonZoomIn)
.wHideAnimationSet(AninatonZoomOut)
.wMyDiaLogViewSet(^UIView *(UIView *mainView) {
    UIImageView *image = [UIImageView new];
    image.image = [UIImage imageNamed:@"healthy"];
    image.frame = CGRectMake(0, 0, mainView.frame.size.width, 80);
    [mainView addSubview:image];
    
    UILabel *la = [UILabel new];
    la.font = [UIFont systemFontOfSize:15.0f];
    la.text = @"为呵护未成年人健康成长,优酷特别推出青少年模式,该模式下部分功能无法正常使用,请监护人主动选择,并设置监护密码";
    la.numberOfLines = 0;
    la.frame = CGRectMake(10, CGRectGetMaxY(image.frame), mainView.frame.size.width-20, 100);
    [mainView addSubview:la];
    
    UIButton *enter = [UIButton buttonWithType:UIButtonTypeCustom];
    [mainView addSubview:enter];
    enter.titleLabel.font = [UIFont systemFontOfSize:14.0f];
    enter.frame = CGRectMake(0, CGRectGetMaxY(la.frame), mainView.frame.size.width, 44);
    [enter setTitle:@"进入青少年模式 >" forState:UIControlStateNormal];
    [enter setTitleColor:DialogColor(0x108ee9) forState:UIControlStateNormal];
    [enter addTarget:WEAK action:@selector(youkuAction:) forControlEvents:UIControlEventTouchUpInside];
    
    UIButton *know = [UIButton buttonWithType:UIButtonTypeCustom];
    [mainView addSubview:know];
    know.titleLabel.font = [UIFont systemFontOfSize:14.0f];
    know.frame = CGRectMake(0, CGRectGetMaxY(enter.frame), mainView.frame.size.width, 44);
    [know setTitle:@"我知道了" forState:UIControlStateNormal];
    [know setTitleColor:DialogColor(0x3333333) forState:UIControlStateNormal];
    [know addTarget:WEAK action:@selector(youkuAction:) forControlEvents:UIControlEventTouchUpInside];
    
    mainView.layer.masksToBounds = YES;
    mainView.layer.cornerRadius = 10;
    return know;
})
.wStart();

其他模式看demo

依赖

无任何依赖 如果需要用到购物车弹窗 可自行导入WMZTags

安装

CocoaPods

  1. 将 cocoapods 更新至最新版本.
  2. 在 Podfile 中添加 pod 'WMZDialog'
  3. 执行 pod installpod update
  4. 导入 #import "WMZDialog.h"。

注:要消除链式编程的警告

要在Buildding Settings 把CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF 设为NO

手动安装

  1. 下载 WMZDialog 文件夹内的所有内容。
  2. 将 WMZDialog 内的源文件添加(拖放)到你的工程。
  3. 导入 #import "WMZDialog.h"

系统要求

该库最低支持 iOS 9.0Xcode 9.0

个人主页

GitHub地址觉得有用的点个star支持一下