Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 816 Bytes

README.md

File metadata and controls

31 lines (19 loc) · 816 Bytes

##简单封装系统AlertController 一句话自由组合

集成
pod 'RAlert'

用法
 AlertBuilder(context: self).title("提示").message("确定删除么").cancelTitle("取消").confirmTitle("确定").cancellAction ({ (UIAlertAction) in
            print("取消")
        }).confirmAction({ (UIAlertAction) in
             print("确定")
        }).build().showController()
        
         AlertBuilder(context: self).title("提示").message("已经删除么").cancelTitle("知道了").cancellAction ({ (UIAlertAction) in
            print("取消")
        }).build().showController()

效果