关于 UIAlertController (Swift 版)

情景如下:
最近在做一个项目, 需要自定义一个 弹窗(AlertView) 并且上面需要有一个UITextField.当文本输入框内容为空时, "取消" 按钮 和 "兑换" 按钮 都是灰色的; 当文本框内容不容空时, "兑换"按钮的颜色变为 绿色.由于iOS目前提倡使用: UIAlertController ,所以就自己摸索使用了一下,果然实现了自己想要的效果. _..... 具体颜色 和 代码如下

**注意: (1) 要遵守 UITextFieldDelegate 协议, 实现部分协议方法.
(2)其中 CommonTools 这是自己封装的工具类, 使用者可以不用理睬, 直接用UIColor 替换成自己想要的颜色即可.
(3) 对NSRange 进行扩展,让swift的string能使用stringByReplacingCharactersInRange. **

============================UIAlertController==========================

样式
关于 UIAlertController (Swift 版)_第1张图片
输入文字前.png
关于 UIAlertController (Swift 版)_第2张图片
输入文字后.png
具体代码
let controller = UIAlertController.init(title: nil, message: "兑换优惠券", preferredStyle: UIAlertControllerStyle.Alert)
            
            let cancelAction = UIAlertAction.init(title: "取消", style: UIAlertActionStyle.Cancel) { (action) in
                
            }
            let OKAction = UIAlertAction.init(title: "兑换", style: UIAlertActionStyle.Default) { (action) in
                
                let textField = (controller.textFields?.first)! as UITextField
                // 在这里进行网络请求, 来验证
                print("\(textField.text!)")
            }
            
            //添加文本输入框
            controller.addTextFieldWithConfigurationHandler { (textfield) in
                textfield.placeholder = "请输入优惠码"
                textfield.tintColor = CommonTools.getUIColorFromRGB(0x17c8ce) // 系统绿
                textfield.delegate = self // 成为代理
            }
             // 目的是 一开始 "取消" ,"兑换" 按钮是灰色的
            cancelAction.setValue(CommonTools.getUIColorFromRGB(0x999999), forKey: "titleTextColor")
            OKAction.setValue(CommonTools.getUIColorFromRGB(0x999999), forKey: "titleTextColor")
            controller.addAction(cancelAction)
            controller.addAction(OKAction)
            self.presentViewController(controller, animated: true, completion: nil)
判断文本输入框的内容变化, 然后"兑换" 做相应的变化
func textField(textField: UITextField, shouldChangeCharactersInRange range: NSRange, replacementString string: String) -> Bool{
        let newText = textField.text!.stringByReplacingCharactersInRange(range.toRange(textField.text!), withString: string)
        if newText.length() == 0 {
            let alertController = self.presentedViewController as? UIAlertController
            if (alertController != nil) {
                let okAction = alertController!.actions.last! as UIAlertAction
                okAction.setValue(CommonTools.getUIColorFromRGB(0x999999), forKey: "titleTextColor")
            }
        }else{
            let alertController = self.presentedViewController as? UIAlertController
            if (alertController != nil) {
                let okAction = alertController!.actions.last! as UIAlertAction
                okAction.setValue(CommonTools.getUIColorFromRGB(0x17c8ce), forKey: "titleTextColor")
            }
        }
        return true;
    }
对NSRange 进行扩展,让swift的string能使用stringByReplacingCharactersInRange
extension NSRange {
    func toRange(string: String) -> Range {
        let startIndex = string.startIndex.advancedBy(self.location)
        let endIndex = startIndex.advancedBy(self.length)
        return startIndex..

========================== UIAlertView 实现方法 =======================

这个也能实现部分功能, 但是不能完全符合自己的要求, 不建议使用

let alertView:UIAlertView = UIAlertView.init(title: "兑换优惠券", message: "", delegate: self, cancelButtonTitle: "取消", otherButtonTitles: "兑换")
            alertView.alertViewStyle = UIAlertViewStyle.PlainTextInput  // 有文本输入框
            let textField:UITextField = alertView.textFieldAtIndex(0)!
            textField.placeholder = "请输入优惠码"
            alertView.show()
UIAlertViewDelegate 协议方法, 来判断点击哪个按钮,处理什么事件
    func alertView(alertView: UIAlertView, clickedButtonAtIndex buttonIndex: Int) {
        print("\(buttonIndex)")
    }

你可能感兴趣的:(关于 UIAlertController (Swift 版))