Code Monkey home page Code Monkey logo

Comments (3)

pmusolino avatar pmusolino commented on June 2, 2024

I'm sorry but at the moment it's not possible, because when you tap a button automatically it dismisses the alert.
About the text, yes, you can edit how text field works.

from pmalertcontroller.

scottpchow23 avatar scottpchow23 commented on June 2, 2024

A solution to this that doesn't rely on the library can be found here:

https://nshipster.com/uialertcontroller/

from pmalertcontroller.

olliekav avatar olliekav commented on June 2, 2024

Though I'd post this here incase it helps anyway else out trying to do this and I've just switched our alerts to PMAController. I'm pretty new to swift so might be better ways to do it :)

Add the textfield as a subview of the content stack view (so I can have horizontal buttons), with an editing changed UIControl event

let textField = TextField(frame: CGRect(x: 0, y: 0, width: 230, height: 40))
textField.placeholder = "Enter your email address"
textField.backgroundColor = ColorCompatibility.lightBackground
textField.layer.cornerRadius = 8
textField.font = UIFont.systemFont(ofSize: 15)
textField.keyboardType = UIKeyboardType.emailAddress
textField.autocapitalizationType = .none
textField.accessibilityIdentifier = "forgotPasswordInput"
textField.addTarget(self, action: #selector(self.alertTextFieldDidChange(field:)), for: UIControl.Event.editingChanged)
alert.alertContentStackView.addArrangedSubview(textField)

I'm only using a tag here as an example, but add your button action as you normally would and set i to disabled.

let submitAction = PMAlertAction(title: "Submit", style: .default, action: {() in }
submitAction.tag = 0xAC
submitAction.isEnabled = false

Now you can listen for changes on the textfield and decide what to do...

@objc func alertTextFieldDidChange(field: UITextField){
        let alertController: PMAlertController = self.presentedViewController as! PMAlertController
        if let submitAction = alertController.view.viewWithTag(0xAC) as? UIButton {
            submitAction.isEnabled = (field.text?.isEmail)
        }
    }

from pmalertcontroller.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.