Swift UIAlertController的用法

news/2024/7/20 20:30:13 标签: ios

自 iOS8 起,苹果就建议告警框使用 UIAlertController 来代替 UIAlertView 和 UIActionSheel。下面总结了一些常见的用法。

1. 简单的应用(同时按钮响应Handler使用闭包函数)
在这里插入图片描述

import UIKit
 
class 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 in
            print("点击了确定")
        })
        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 UIKit
 
class 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 in
            textField.placeholder = "用户名"
        }
        alertController.addTextField {
            (textField: UITextField!) -> Void in
            textField.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.从上面的样例可以发现,每次要弹出提示框都要创建一个
2.然后添加 按钮
3.最后再通过对应的视图控制器 出来
4.我们可以对 进行个扩展,把这些操作做个封装,方便使用。

1.UIAlertController扩展(UIAlertExtension.swift)

import UIKit
 
extension 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: "是否提交?") { (_) in
    print("点击了确认按钮!")
}

http://www.niftyadmin.cn/n/1549805.html

相关文章

php提示Array to string conversion 解决方案

这是个错误是我们在PHP使用中,把数组当成了字符串使用。有两种情况下会出现这种错误。 场景一 这种场景比较少,大多数都是新手才会犯,也很容易发现解决错误。就是字面意思,将数组当成字符串使用了。 示例: $arr ar…

swift—UIColor十六进制

新建一个文件UIColorhex.swift 2.代码 import Foundation import UIKitextension UIColor{class func colorWithHex(hexStr:String) -> UIColor{return UIColor.colorWithHex(hexStr : hexStr, alpha:1)}class func colorWithHex(hexStr:String, alpha:Float) -> UIColo…

wordpress内存不足问题“Fatal error:out of memory”

方法一: 在 .htaccess 文件中加上 php_value memory_limit 256M 方法二: 在你的 wp-config.php 文件中加上 define (WP_MEMORY_LIMIT, 256M ); 方法三: wp-settings.php,编辑这个文件,修改define(WP_MEMORY_LIM…

iOS-电子签名

有些APP开发中需要用到电子签名,封装成一个View,使用灵活. ZHSignatureView.h里的一些配置参数,可以不传 interface ZHSignatureView : UIView /**已签名的照片,跳转传入*/ property(nonatomic, strong) UIImage *signImage;/**签名笔划颜色,默认blackColor*/ prop…

tp5.1调用多个数据库更新数据时的bug

后台开发时,涉及到多个数据库的调用,遇到一个很妖的问题,更新数据时会把主键自动变成0; 原因是查询的时候是通过 getBy键名(值) 的方式查询数据,此键值不是主键的原因,更新数据时就出现了这个问题 解决方…

iOS签名功能的实现

github地址:https://github.com/xx040145/JPZSign

phpmyadmin查看创建表的SQL语句

使用 SHOW CREATE TABLE 表名 语句进行查询即可 SHOW CREATE TABLE your_table 语句较长,显示不全,点击上面的 选项 -> 选择完整内容 -> 执行 ;即可查看到完整的内容

ThinkPHP 5.1升级到指定版本composer命令

thinkphp 5.1 以上版本只能通过composer来安装升级。 以防万一,建议先备份application和修改过的目录。 cmd或者ps进入网站根目录。执行如下命令之一: composer update topthink/framework 5.1.15 composer update topthink/framework5.1.15 compos…