Swift - UIAlertController的简单使用

简介: Swift - UIAlertController的简单使用

虽然语法有点变化,但是一样是在iOS8后废弃UIAlertView后才有的新方法,跟Object-C比起来方法稍有变化,但是还能看到原来的影子,效果如下:

1.png

看代码:

import UIKit
class ViewController: UIViewController {
    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
        let alertBtn = UIButton(type: .System)
        alertBtn.frame = CGRectMake(10, 120, 300, 60)
        alertBtn.setTitle("AlertView", forState: .Normal)
        alertBtn.layer.borderWidth = 1
        alertBtn.layer.cornerRadius=5;
        alertBtn.layer.borderColor = UIColor.blackColor().CGColor
        alertBtn.setTitleColor(UIColor.orangeColor(), forState: .Normal)
        alertBtn.addTarget(self, action: #selector(self.AlertView), forControlEvents: .TouchUpInside)
        self.view.addSubview(alertBtn)
        let actionSheet = UIButton(type: .System)
        actionSheet.frame = CGRectMake(10, 210, 300, 60)
        actionSheet.setTitle("ActionSheet", forState: .Normal)
        actionSheet.layer.borderWidth = 1
        actionSheet.layer.cornerRadius=5;
        actionSheet.layer.borderColor = UIColor.blackColor().CGColor
        actionSheet.setTitleColor(UIColor.orangeColor(), forState: .Normal)
        actionSheet.addTarget(self, action: #selector(self.ActionSheet), forControlEvents: .TouchUpInside)
        self.view.addSubview(actionSheet)
        let alertFieldBtn = UIButton(type: .System)
        alertFieldBtn.frame = CGRectMake(10, 300, 300, 60)
        alertFieldBtn.setTitle("AlertFieldView", forState: .Normal)
        alertFieldBtn.layer.borderWidth = 1
        alertFieldBtn.layer.cornerRadius=5;
        alertFieldBtn.layer.borderColor = UIColor.blackColor().CGColor
        alertFieldBtn.setTitleColor(UIColor.orangeColor(), forState: .Normal)
        alertFieldBtn.addTarget(self, action: #selector(self.AlertField), forControlEvents: .TouchUpInside)
        self.view.addSubview(alertFieldBtn)
    }
    func AlertView() {
        let alertVC = UIAlertController(title: " 警告", message: "这是一个UIAlertController做的UIAlertView", preferredStyle: .Alert)
        let cancelAction = UIAlertAction(title: "Cancel", style: .Cancel, handler: {
            (action: UIAlertAction) -> Void in
            /**
             写取消后操作
             */
        })
        let okAction = UIAlertAction(title: "Ok", style: .Default, handler: {
            (action: UIAlertAction) -> Void in
            /**
             写确定后操作
             */
        })
        alertVC.addAction(cancelAction)
        alertVC.addAction(okAction)
        self.presentViewController(alertVC, animated: true, completion: nil)
    }
    func ActionSheet() {
        let alertVC = UIAlertController(title: " 警告", message: "这是一个UIAlertController做的UIAlertView", preferredStyle: .ActionSheet)
        let cancelAction = UIAlertAction(title: "Cancel", style: .Cancel, handler: {
            (action: UIAlertAction) -> Void in
            /**
             写取消后操作
             */
        })
        let okAction1 = UIAlertAction(title: "Ok1", style: .Default, handler: {
            (action: UIAlertAction) -> Void in
            /**
             写Ok1后操作
             */
        })
        let okAction2 = UIAlertAction(title: "Ok2", style: .Default, handler: {
            (action: UIAlertAction) -> Void in
            /**
             写Ok1后操作
             */
        })
        alertVC.addAction(cancelAction)
        alertVC.addAction(okAction1)
        alertVC.addAction(okAction2)
        self.presentViewController(alertVC, animated: true, completion: nil)
    }
    func AlertField() {
        let alertVC = UIAlertController(title: " 登陆", message: nil, preferredStyle: .Alert)
        let cancelAction = UIAlertAction(title: "Cancel", style: .Cancel, handler: {
            (action: UIAlertAction) -> Void in
            /**
             写取消后操作
             */
        })
        let okAction = UIAlertAction(title: "Ok", style: .Default, handler: {
            (action: UIAlertAction) -> Void in
            /**
             写确定后操作
             */
        })
        alertVC.addTextFieldWithConfigurationHandler {
            (textField: UITextField!) -> Void in
            textField.placeholder = "登录"
        }
        alertVC.addTextFieldWithConfigurationHandler {
            (textField: UITextField!) -> Void in
            textField.placeholder = "密码"
            textField.secureTextEntry = true
        }
        alertVC.addAction(cancelAction)
        alertVC.addAction(okAction)
        //要么要写在addTextFieldWithConfigurationHandler后面要么写在cancel或者ok的block里面,否则系统崩溃
        let loginField = (alertVC.textFields?.first)! as UITextField
        let passField = (alertVC.textFields?.last)! as UITextField
        self.presentViewController(alertVC, animated: true, completion: nil)
    }
    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }
}

Demo下载地址:https://github.com/codeliu6572/Swift_UIAlertController

目录
相关文章
|
Swift iOS开发
Swift UI专项训练35 UIAlertController
   之前我们介绍过AlertView和ActionSheet的用法,前者显示在页面中,而后者是从页面底部飞入的。
1063 0
|
6月前
|
安全 编译器 Swift
IOS开发基础知识: 对比 Swift 和 Objective-C 的优缺点。
IOS开发基础知识: 对比 Swift 和 Objective-C 的优缺点。
403 2
|
4月前
|
Unix 调度 Swift
苹果iOS新手开发之Swift 中获取时间戳有哪些方式?
在Swift中获取时间戳有四种常见方式:1) 使用`Date`对象获取秒级或毫秒级时间戳;2) 通过`CFAbsoluteTimeGetCurrent`获取Core Foundation的秒数,需转换为Unix时间戳;3) 使用`DispatchTime.now()`获取纳秒级精度的调度时间点;4) `ProcessInfo`提供设备启动后的秒数,不表示绝对时间。不同方法适用于不同的精度和场景需求。
150 3
|
4天前
|
安全 Swift iOS开发
Swift 与 UIKit 在 iOS 应用界面开发中的关键技术和实践方法
本文深入探讨了 Swift 与 UIKit 在 iOS 应用界面开发中的关键技术和实践方法。Swift 以其简洁、高效和类型安全的特点,结合 UIKit 丰富的组件和功能,为开发者提供了强大的工具。文章从 Swift 的语法优势、类型安全、编程模型以及与 UIKit 的集成,到 UIKit 的主要组件和功能,再到构建界面的实践技巧和实际案例分析,全面介绍了如何利用这些技术创建高质量的用户界面。
13 2
|
20天前
|
Swift iOS开发 UED
如何使用Swift和UIKit在iOS应用中实现自定义按钮动画
本文通过一个具体案例,介绍如何使用Swift和UIKit在iOS应用中实现自定义按钮动画。当用户点击按钮时,按钮将从圆形变为椭圆形,颜色从蓝色渐变到绿色;释放按钮时,动画以相反方式恢复。通过UIView的动画方法和弹簧动画效果,实现平滑自然的过渡。
37 1
|
29天前
|
Swift iOS开发 UED
如何使用Swift和UIKit在iOS应用中实现自定义按钮动画
【10月更文挑战第18天】本文通过一个具体案例,介绍如何使用Swift和UIKit在iOS应用中实现自定义按钮动画。当用户按下按钮时,按钮将从圆形变为椭圆形并从蓝色渐变为绿色;释放按钮时,动画恢复原状。通过UIView的动画方法和弹簧动画效果,实现平滑自然的动画过渡。
50 5
|
3月前
|
存储 移动开发 Swift
使用Swift进行iOS应用开发:探索现代移动开发的魅力
【8月更文挑战第12天】使用Swift进行iOS应用开发,不仅能够享受到Swift语言带来的简洁、快速、安全的编程体验,还能够充分利用iOS平台提供的丰富资源和强大功能。然而,iOS应用开发并非易事,需要开发者具备扎实的编程基础、丰富的实践经验和不断学习的精神。希望本文能够为您的iOS应用开发之旅提供一些有益的参考和帮助。