iOS开发 提示框UIAlertController的略微封装

2024-03-05 04:18

本文主要是介绍iOS开发 提示框UIAlertController的略微封装,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

之前写的代码,把UIAlertView的封装剔除之后,发现UIAlertController 封装的意义不是很大了,毕竟苹果公司封装的已经够好了,好了,上代码

//
//  XSDAlertViewTools.h
//  XSDSH  提示框工具类
//
//  Created by 小广 on 16/1/11.
//  Copyright © 2016年 XSD. All rights reserved.
//#import <Foundation/Foundation.h>#define cancelIndex    (-1)typedef void(^AlertViewBlock)(NSInteger buttonTag);@interface XSDAlertViewTools : NSObject+ (XSDAlertViewTools *)shareInstance;/***  创建提示框**  @param title        标题*  @param message      提示内容*  @param cancelTitle  取消按钮(无操作,为nil则只显示一个按钮)*  @param titleArray   标题字符串数组(为nil,默认为"确定")*  @param vc           VC iOS8及其以后会用到*  @param confirm      点击按钮的回调(取消按钮的Index是cancelIndex -1)*/
- (void)showAlert:(NSString *)titlemessage:(NSString *)messagecancelTitle:(NSString *)cancelTitletitleArray:(NSArray *)titleArrayviewController:(UIViewController *)vcconfirm:(AlertViewBlock)confirm;/***  创建提示框(可变参数版)**  @param title        标题*  @param message      提示内容*  @param cancelTitle  取消按钮(无操作,为nil则只显示一个按钮)*  @param vc           VC iOS8及其以后会用到*  @param confirm      点击按钮的回调(取消按钮的Index是cancelIndex -1)*  @param buttonTitles 按钮(为nil,默认为"确定",传参数时必须以nil结尾,否则会崩溃)*/
- (void)showAlert:(NSString *)titlemessage:(NSString *)messagecancelTitle:(NSString *)cancelTitleviewController:(UIViewController *)vcconfirm:(AlertViewBlock)confirmbuttonTitles:(NSString *)buttonTitles, ... NS_REQUIRES_NIL_TERMINATION;/***  创建菜单(Sheet)**  @param title        标题*  @param message      提示内容*  @param cancelTitle  取消按钮(无操作,为nil则只显示一个按钮)*  @param titleArray   标题字符串数组(为nil,默认为"确定")*  @param vc           VC iOS8及其以后会用到*  @param confirm      点击确认按钮的回调(取消按钮的Index是cancelIndex -1)*/
- (void)showSheet:(NSString *)titlemessage:(NSString *)messagecancelTitle:(NSString *)cancelTitletitleArray:(NSArray *)titleArrayviewController:(UIViewController *)vcconfirm:(AlertViewBlock)confirm;/***  创建菜单(Sheet 可变参数版)**  @param title        标题*  @param message      提示内容*  @param cancelTitle  取消按钮(无操作,为nil则只显示一个按钮)*  @param vc           VC*  @param confirm      点击按钮的回调(取消按钮的Index是cancelIndex -1)*  @param buttonTitles 按钮(为nil,默认为"确定",传参数时必须以nil结尾,否则会崩溃)*/
- (void)showSheet:(NSString *)titlemessage:(NSString *)messagecancelTitle:(NSString *)cancelTitleviewController:(UIViewController *)vcconfirm:(AlertViewBlock)confirmbuttonTitles:(NSString *)buttonTitles, ... NS_REQUIRES_NIL_TERMINATION ;@end

.m里
//
//  XSDAlertViewTools.m
//  XSDSH  提示框工具类
//
//  Created by 小广 on 16/1/11.
//  Copyright © 2016年 XSD. All rights reserved.
//#import "XSDAlertViewTools.h"#define RootVC  [[UIApplication sharedApplication] keyWindow].rootViewController@interface XSDAlertViewTools ()@property (nonatomic, copy) AlertViewBlock block;@end@implementation XSDAlertViewTools#pragma mark - 对外方法
+ (XSDAlertViewTools *)shareInstance {static XSDAlertViewTools *tools = nil;static dispatch_once_t onceToken;dispatch_once(&onceToken, ^{tools = [[self alloc] init];});return tools;
}/***  创建提示框**  @param title        标题*  @param message      提示内容*  @param cancelTitle  取消按钮(无操作,为nil则只显示一个按钮)*  @param titleArray   标题字符串数组(为nil,默认为"确定")*  @param vc           VC*  @param confirm      点击确认按钮的回调*/
- (void)showAlert:(NSString *)titlemessage:(NSString *)messagecancelTitle:(NSString *)cancelTitletitleArray:(NSArray *)titleArrayviewController:(UIViewController *)vcconfirm:(AlertViewBlock)confirm {//if (!vc) vc = RootVC;[self p_showAlertController:title message:messagecancelTitle:cancelTitle titleArray:titleArrayviewController:vc confirm:^(NSInteger buttonTag) {if (confirm)confirm(buttonTag);}];
}/***  创建提示框(可变参数版)**  @param title        标题*  @param message      提示内容*  @param cancelTitle  取消按钮(无操作,为nil则只显示一个按钮)*  @param vc           VC*  @param confirm      点击按钮的回调*  @param buttonTitles 按钮(为nil,默认为"确定",传参数时必须以nil结尾,否则会崩溃)*/
- (void)showAlert:(NSString *)titlemessage:(NSString *)messagecancelTitle:(NSString *)cancelTitleviewController:(UIViewController *)vcconfirm:(AlertViewBlock)confirmbuttonTitles:(NSString *)buttonTitles, ... NS_REQUIRES_NIL_TERMINATION {// 读取可变参数里面的titles数组NSMutableArray *titleArray = [[NSMutableArray alloc] initWithCapacity:0];va_list list;if(buttonTitles) {//1.取得第一个参数的值(即是buttonTitles)[titleArray addObject:buttonTitles];//2.从第2个参数开始,依此取得所有参数的值NSString *otherTitle;va_start(list, buttonTitles);while ((otherTitle = va_arg(list, NSString*))) {[titleArray addObject:otherTitle];}va_end(list);}if (!vc) vc = RootVC;[self p_showAlertController:title message:messagecancelTitle:cancelTitle titleArray:titleArrayviewController:vc confirm:^(NSInteger buttonTag) {if (confirm)confirm(buttonTag);}];}/***  创建菜单(Sheet)**  @param title        标题*  @param message      提示内容*  @param cancelTitle  取消按钮(无操作,为nil则只显示一个按钮)*  @param titleArray   标题字符串数组(为nil,默认为"确定")*  @param vc           VC*  @param confirm      点击确认按钮的回调*/
- (void)showSheet:(NSString *)titlemessage:(NSString *)messagecancelTitle:(NSString *)cancelTitletitleArray:(NSArray *)titleArrayviewController:(UIViewController *)vcconfirm:(AlertViewBlock)confirm {if (!vc) vc = RootVC;[self p_showSheetAlertController:title message:message cancelTitle:cancelTitletitleArray:titleArray viewController:vc confirm:^(NSInteger buttonTag) {if (confirm)confirm(buttonTag);}];
}/***  创建菜单(Sheet 可变参数版)**  @param title        标题*  @param message      提示内容*  @param cancelTitle  取消按钮(无操作,为nil则只显示一个按钮)*  @param vc           VC iOS8及其以后会用到*  @param confirm      点击按钮的回调*  @param buttonTitles 按钮(为nil,默认为"确定",传参数时必须以nil结尾,否则会崩溃)*/
- (void)showSheet:(NSString *)titlemessage:(NSString *)messagecancelTitle:(NSString *)cancelTitleviewController:(UIViewController *)vcconfirm:(AlertViewBlock)confirmbuttonTitles:(NSString *)buttonTitles, ... NS_REQUIRES_NIL_TERMINATION {// 读取可变参数里面的titles数组NSMutableArray *titleArray = [[NSMutableArray alloc] initWithCapacity:0];va_list list;if(buttonTitles) {//1.取得第一个参数的值(即是buttonTitles)[titleArray addObject:buttonTitles];//2.从第2个参数开始,依此取得所有参数的值NSString *otherTitle;va_start(list, buttonTitles);while ((otherTitle= va_arg(list, NSString*))) {[titleArray addObject:otherTitle];}va_end(list);}if (!vc) vc = RootVC;// 显示菜单提示框[self p_showSheetAlertController:title message:message cancelTitle:cancelTitletitleArray:titleArray viewController:vc confirm:^(NSInteger buttonTag) {if (confirm)confirm(buttonTag);}];}#pragma mark - ----------------内部方法------------------//UIAlertController(iOS8及其以后)
- (void)p_showAlertController:(NSString *)titlemessage:(NSString *)messagecancelTitle:(NSString *)cancelTitletitleArray:(NSArray *)titleArrayviewController:(UIViewController *)vcconfirm:(AlertViewBlock)confirm {UIAlertController  *alert = [UIAlertController alertControllerWithTitle:titlemessage:messagepreferredStyle:UIAlertControllerStyleAlert];// 下面两行代码 是修改 title颜色和字体的代码
//    NSAttributedString *attributedMessage = [[NSAttributedString alloc] initWithString:title attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:17.0f], NSForegroundColorAttributeName:UIColorFrom16RGB(0x334455)}];
//    [alert setValue:attributedMessage forKey:@"attributedTitle"];if (cancelTitle) {// 取消UIAlertAction  *cancelAction = [UIAlertAction actionWithTitle:cancelTitlestyle:UIAlertActionStyleCancelhandler:^(UIAlertAction * _Nonnull action) {if (confirm)confirm(cancelIndex);}];[alert addAction:cancelAction];}// 确定操作if (!titleArray || titleArray.count == 0) {UIAlertAction  *confirmAction = [UIAlertAction actionWithTitle:@"确定"style:UIAlertActionStyleDefaulthandler:^(UIAlertAction * _Nonnull action) {if (confirm)confirm(0);}];[alert addAction:confirmAction];} else {for (NSInteger i = 0; i<titleArray.count; i++) {UIAlertAction  *action = [UIAlertAction actionWithTitle:titleArray[i]style:UIAlertActionStyleDefaulthandler:^(UIAlertAction * _Nonnull action) {if (confirm)confirm(i);}];// [action setValue:UIColorFrom16RGB(0x00AE08) forKey:@"titleTextColor"]; // 此代码 可以修改按钮颜色[alert addAction:action];}}[vc presentViewController:alert animated:YES completion:nil];}// ActionSheet的封装
- (void)p_showSheetAlertController:(NSString *)titlemessage:(NSString *)messagecancelTitle:(NSString *)cancelTitletitleArray:(NSArray *)titleArrayviewController:(UIViewController *)vcconfirm:(AlertViewBlock)confirm {UIAlertController *sheet = [UIAlertController alertControllerWithTitle:titlemessage:messagepreferredStyle:UIAlertControllerStyleActionSheet];if (!cancelTitle) cancelTitle = @"取消";// 取消UIAlertAction  *cancelAction = [UIAlertAction actionWithTitle:cancelTitlestyle:UIAlertActionStyleCancelhandler:^(UIAlertAction * _Nonnull action) {if (confirm)confirm(cancelIndex);}];[sheet addAction:cancelAction];if (titleArray.count > 0) {for (NSInteger i = 0; i<titleArray.count; i++) {UIAlertAction  *action = [UIAlertAction actionWithTitle:titleArray[i]style:UIAlertActionStyleDefaulthandler:^(UIAlertAction * _Nonnull action) {if (confirm)confirm(i);}];[sheet addAction:action];}}[vc presentViewController:sheet animated:YES completion:nil];
}@end

用法:

 // 通常的alert[[XSDAlertViewTools shareInstance] showAlert:@"提示"message:@"这个就是提示的内容了"cancelTitle:@"取消"titleArray:@[@"确定"]viewController:nilconfirm:^(NSInteger buttonTag) {// cancel按钮的index(buttonTag)是-1 cancelIndexNSLog(@"点击按钮的buttonTag===%ld==",(long)buttonTag);}];
 // 带有可变参数的alert[[XSDAlertViewTools shareInstance] showAlert:@"提示"message:@"这个就是提示的内容了"cancelTitle:@"取消"viewController:selfconfirm:^(NSInteger buttonTag) {// cancel按钮的index(buttonTag)是-1 cancelIndexNSLog(@"点击按钮的buttonTag===%ld==",(long)buttonTag);} buttonTitles:@"呼叫",@"查看",@"我就看看", nil];

如图:alert 和sheet

  


比较low,大家凑合着看吧...其中的sheet的用法,和上面的alert一样;


这篇关于iOS开发 提示框UIAlertController的略微封装的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/775313

相关文章

基于Python开发电脑定时关机工具

《基于Python开发电脑定时关机工具》这篇文章主要为大家详细介绍了如何基于Python开发一个电脑定时关机工具,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1. 简介2. 运行效果3. 相关源码1. 简介这个程序就像一个“忠实的管家”,帮你按时关掉电脑,而且全程不需要你多做

Java中的Opencv简介与开发环境部署方法

《Java中的Opencv简介与开发环境部署方法》OpenCV是一个开源的计算机视觉和图像处理库,提供了丰富的图像处理算法和工具,它支持多种图像处理和计算机视觉算法,可以用于物体识别与跟踪、图像分割与... 目录1.Opencv简介Opencv的应用2.Java使用OpenCV进行图像操作opencv安装j

基于Qt开发一个简单的OFD阅读器

《基于Qt开发一个简单的OFD阅读器》这篇文章主要为大家详细介绍了如何使用Qt框架开发一个功能强大且性能优异的OFD阅读器,文中的示例代码讲解详细,有需要的小伙伴可以参考一下... 目录摘要引言一、OFD文件格式解析二、文档结构解析三、页面渲染四、用户交互五、性能优化六、示例代码七、未来发展方向八、结论摘要

在 VSCode 中配置 C++ 开发环境的详细教程

《在VSCode中配置C++开发环境的详细教程》本文详细介绍了如何在VisualStudioCode(VSCode)中配置C++开发环境,包括安装必要的工具、配置编译器、设置调试环境等步骤,通... 目录如何在 VSCode 中配置 C++ 开发环境:详细教程1. 什么是 VSCode?2. 安装 VSCo

C#图表开发之Chart详解

《C#图表开发之Chart详解》C#中的Chart控件用于开发图表功能,具有Series和ChartArea两个重要属性,Series属性是SeriesCollection类型,包含多个Series对... 目录OverviChina编程ewSeries类总结OverviewC#中,开发图表功能的控件是Char

鸿蒙开发搭建flutter适配的开发环境

《鸿蒙开发搭建flutter适配的开发环境》文章详细介绍了在Windows系统上如何创建和运行鸿蒙Flutter项目,包括使用flutterdoctor检测环境、创建项目、编译HAP包以及在真机上运... 目录环境搭建创建运行项目打包项目总结环境搭建1.安装 DevEco Studio NEXT IDE

Python开发围棋游戏的实例代码(实现全部功能)

《Python开发围棋游戏的实例代码(实现全部功能)》围棋是一种古老而复杂的策略棋类游戏,起源于中国,已有超过2500年的历史,本文介绍了如何用Python开发一个简单的围棋游戏,实例代码涵盖了游戏的... 目录1. 围棋游戏概述1.1 游戏规则1.2 游戏设计思路2. 环境准备3. 创建棋盘3.1 棋盘类

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

Hadoop企业开发案例调优场景

需求 (1)需求:从1G数据中,统计每个单词出现次数。服务器3台,每台配置4G内存,4核CPU,4线程。 (2)需求分析: 1G / 128m = 8个MapTask;1个ReduceTask;1个mrAppMaster 平均每个节点运行10个 / 3台 ≈ 3个任务(4    3    3) HDFS参数调优 (1)修改:hadoop-env.sh export HDFS_NAMENOD

嵌入式QT开发:构建高效智能的嵌入式系统

摘要: 本文深入探讨了嵌入式 QT 相关的各个方面。从 QT 框架的基础架构和核心概念出发,详细阐述了其在嵌入式环境中的优势与特点。文中分析了嵌入式 QT 的开发环境搭建过程,包括交叉编译工具链的配置等关键步骤。进一步探讨了嵌入式 QT 的界面设计与开发,涵盖了从基本控件的使用到复杂界面布局的构建。同时也深入研究了信号与槽机制在嵌入式系统中的应用,以及嵌入式 QT 与硬件设备的交互,包括输入输出设