Swift UIAlertController使用

2024-01-31 10:18

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

 

1. 简单的应用(同时按钮响应Handler使用闭包函数)

import UIKitclass ViewController: UIViewController {override func viewDidLoad() {super.viewDidLoad()}override func viewDidAppear(_ animated: Bool){super.viewDidAppear(animated)let alertController = UIAlertController(title: "系统提示",message: "您确定要离开hangge.com吗?", preferredStyle: .alert)let cancelAction = UIAlertAction(title: "取消", style: .cancel, handler: nil)let okAction = UIAlertAction(title: "好的", style: .default, handler: {action inprint("点击了确定")})alertController.addAction(cancelAction)alertController.addAction(okAction)self.present(alertController, animated: true, completion: nil)}override func didReceiveMemoryWarning() {super.didReceiveMemoryWarning()}
}

2. 除了弹出,还可以使用从底部向上滑出的样式
(注意:如果上拉菜单中有“取消”按钮的话,那么它永远都会出现在菜单的底部,不管添加的次序)

let alertController = UIAlertController(title: "保存或删除数据", message: "删除数据将不可恢复",preferredStyle: .actionSheet)
let cancelAction = UIAlertAction(title: "取消", style: .cancel, handler: nil)
let deleteAction = UIAlertAction(title: "删除", style: .destructive, handler: nil)
let archiveAction = UIAlertAction(title: "保存", style: .default, handler: nil)
alertController.addAction(cancelAction)
alertController.addAction(deleteAction)
alertController.addAction(archiveAction)
self.present(alertController, animated: true, completion: nil)

3.按钮使用“告警”样式(文字颜色变红,用来来警示用户)

let okAction = UIAlertAction(title: "好的", style: .destructive, handler: nil)

4.添加任意数量文本输入框(比如可以用来实现个登陆框)

import UIKitclass ViewController: UIViewController {override func viewDidLoad() {super.viewDidLoad()}override func viewDidAppear(_ animated: Bool){super.viewDidAppear(animated)let alertController = UIAlertController(title: "系统登录",message: "请输入用户名和密码", preferredStyle: .alert)alertController.addTextField {(textField: UITextField!) -> Void intextField.placeholder = "用户名"}alertController.addTextField {(textField: UITextField!) -> Void intextField.placeholder = "密码"textField.isSecureTextEntry = true}let cancelAction = UIAlertAction(title: "取消", style: .cancel, handler: nil)let okAction = UIAlertAction(title: "好的", style: .default, handler: {action in//也可以用下标的形式获取textField let login = alertController.textFields![0]let login = alertController.textFields!.first!let password = alertController.textFields!.last!print("用户名:\(login.text) 密码:\(password.text)")})alertController.addAction(cancelAction)alertController.addAction(okAction)self.present(alertController, animated: true, completion: nil)}override func didReceiveMemoryWarning() {super.didReceiveMemoryWarning()}
}

5.使用代码移除提示框

self.presentedViewController?.dismiss(animated: false, completion: nil)

6.提示框弹出后,过段时间自动移除

let alertController = UIAlertController(title: "保存成功!",message: nil, preferredStyle: .alert)
//显示提示框
self.present(alertController, animated: true, completion: nil)
//两秒钟后自动消失
DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + 2) {self.presentedViewController?.dismiss(animated: false, completion: nil)
}

附:扩展 UIAlertController 方便使用

1.从上面的样例可以发现,每次要弹出提示框都要创建一个 UIAlertController
2.然后添加 action按钮
3.最后再通过对应的视图控制器present 出来
4.我们可以对UIAlertController 进行个扩展,把这些操作做个封装,方便使用。

1.UIAlertController扩展(UIAlertExtension.swift)

这里增加两种提示框效果:普通消息提示框、确认提示框,并且每个提示框都可以指定显示的VC(不指定则为根VC)

import UIKitextension UIAlertController {//在指定视图控制器上弹出普通消息提示框static func showAlert(message: String, in viewController: UIViewController) {let alert = UIAlertController(title: nil, message: message, preferredStyle: .alert)alert.addAction(UIAlertAction(title: "确定", style: .cancel))viewController.present(alert, animated: true)}//在根视图控制器上弹出普通消息提示框static func showAlert(message: String) {if let vc = UIApplication.shared.keyWindow?.rootViewController {showAlert(message: message, in: vc)}}//在指定视图控制器上弹出确认框static func showConfirm(message: String, in viewController: UIViewController,confirm: ((UIAlertAction)->Void)?) {let alert = UIAlertController(title: nil, message: message, preferredStyle: .alert)alert.addAction(UIAlertAction(title: "取消", style: .cancel))alert.addAction(UIAlertAction(title: "确定", style: .default, handler: confirm))viewController.present(alert, animated: true)}//在根视图控制器上弹出确认框static func showConfirm(message: String, confirm: ((UIAlertAction)->Void)?) {if let vc = UIApplication.shared.keyWindow?.rootViewController {showConfirm(message: message, in: vc, confirm: confirm)}}
}

2.使用样例
下面分别调用两种提示框:

//弹出普通消息提示框
UIAlertController.showAlert(message: "保存成功!")//弹出确认选择提示框
UIAlertController.showConfirm(message: "是否提交?") { (_) inprint("点击了确认按钮!")
}

 

这篇关于Swift UIAlertController使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

使用Python构建智能BAT文件生成器的完美解决方案

《使用Python构建智能BAT文件生成器的完美解决方案》这篇文章主要为大家详细介绍了如何使用wxPython构建一个智能的BAT文件生成器,它不仅能够为Python脚本生成启动脚本,还提供了完整的文... 目录引言运行效果图项目背景与需求分析核心需求技术选型核心功能实现1. 数据库设计2. 界面布局设计3

使用IDEA部署Docker应用指南分享

《使用IDEA部署Docker应用指南分享》本文介绍了使用IDEA部署Docker应用的四步流程:创建Dockerfile、配置IDEADocker连接、设置运行调试环境、构建运行镜像,并强调需准备本... 目录一、创建 dockerfile 配置文件二、配置 IDEA 的 Docker 连接三、配置 Do

Android Paging 分页加载库使用实践

《AndroidPaging分页加载库使用实践》AndroidPaging库是Jetpack组件的一部分,它提供了一套完整的解决方案来处理大型数据集的分页加载,本文将深入探讨Paging库... 目录前言一、Paging 库概述二、Paging 3 核心组件1. PagingSource2. Pager3.

python使用try函数详解

《python使用try函数详解》Pythontry语句用于异常处理,支持捕获特定/多种异常、else/final子句确保资源释放,结合with语句自动清理,可自定义异常及嵌套结构,灵活应对错误场景... 目录try 函数的基本语法捕获特定异常捕获多个异常使用 else 子句使用 finally 子句捕获所

C++11右值引用与Lambda表达式的使用

《C++11右值引用与Lambda表达式的使用》C++11引入右值引用,实现移动语义提升性能,支持资源转移与完美转发;同时引入Lambda表达式,简化匿名函数定义,通过捕获列表和参数列表灵活处理变量... 目录C++11新特性右值引用和移动语义左值 / 右值常见的左值和右值移动语义移动构造函数移动复制运算符

Python对接支付宝支付之使用AliPay实现的详细操作指南

《Python对接支付宝支付之使用AliPay实现的详细操作指南》支付宝没有提供PythonSDK,但是强大的github就有提供python-alipay-sdk,封装里很多复杂操作,使用这个我们就... 目录一、引言二、准备工作2.1 支付宝开放平台入驻与应用创建2.2 密钥生成与配置2.3 安装ali

C#中lock关键字的使用小结

《C#中lock关键字的使用小结》在C#中,lock关键字用于确保当一个线程位于给定实例的代码块中时,其他线程无法访问同一实例的该代码块,下面就来介绍一下lock关键字的使用... 目录使用方式工作原理注意事项示例代码为什么不能lock值类型在C#中,lock关键字用于确保当一个线程位于给定实例的代码块中时

MySQL 强制使用特定索引的操作

《MySQL强制使用特定索引的操作》MySQL可通过FORCEINDEX、USEINDEX等语法强制查询使用特定索引,但优化器可能不采纳,需结合EXPLAIN分析执行计划,避免性能下降,注意版本差异... 目录1. 使用FORCE INDEX语法2. 使用USE INDEX语法3. 使用IGNORE IND

C# $字符串插值的使用

《C#$字符串插值的使用》本文介绍了C#中的字符串插值功能,详细介绍了使用$符号的实现方式,文中通过示例代码介绍的非常详细,需要的朋友们下面随着小编来一起学习学习吧... 目录$ 字符使用方式创建内插字符串包含不同的数据类型控制内插表达式的格式控制内插表达式的对齐方式内插表达式中使用转义序列内插表达式中使用

flask库中sessions.py的使用小结

《flask库中sessions.py的使用小结》在Flask中Session是一种用于在不同请求之间存储用户数据的机制,Session默认是基于客户端Cookie的,但数据会经过加密签名,防止篡改,... 目录1. Flask Session 的基本使用(1) 启用 Session(2) 存储和读取 Se