ios - SwiftUI:UIAlertController 的 textField 在 UIAlertAction 中没有响应

标签 ios uikit swiftui uialertcontroller uialertaction

我需要使用 UIAlertContoller ,作为 SwiftUI 的 Alert不支持 TextField .

由于各种原因(可访问性、DynamicType、暗模式支持等),我不能使用自定义创建的 AlertView。

基本思路是,SwiftUI 的 alert 必须持有 TextField & 输入的文本必须反射(reflect)使用。

我创建了一个 SwiftUI view通过符合 UIViewControllerRepresentable以下是工作代码。

struct AlertControl: UIViewControllerRepresentable {

    typealias UIViewControllerType = UIAlertController

    @Binding var textString: String
    @Binding var show: Bool

    var title: String
    var message: String

    func makeUIViewController(context: UIViewControllerRepresentableContext<AlertControl>) -> UIAlertController {

        let alert = UIAlertController(title: title, message: message, preferredStyle: .alert)

        alert.addTextField { textField in
            textField.placeholder = "Enter some text"
        }

        let cancelAction = UIAlertAction(title: "cancel", style: .destructive) { (action) in
            self.show = false
        }

        let submitAction = UIAlertAction(title: "Submit", style: .default) { (action) in
            self.show = false
        }

        alert.addAction(cancelAction)
        alert.addAction(submitAction)

        return alert
    }

    func updateUIViewController(_ uiViewController: UIAlertController, context: UIViewControllerRepresentableContext<AlertControl>) {

    }

    func makeCoordinator() -> AlertControl.Coordinator {
        Coordinator(self)
    }

    class Coordinator: NSObject, UITextFieldDelegate {

        var control: AlertControl

        init(_ control: AlertControl) {
            self.control = control
        }

        func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
            if let text = textField.text {
                self.control.textString = text
            }

            return true
        }
    }
}

// SwiftUI View in some content view
 AlertControl(textString: self.$text,
                             show: self.$showAlert,
                             title: "Title goes here",
                             message: "Message goes here")


问题:

轻按时警报操作中没有任何事件。我放了断点来检查,但它从来没有打到那里。

UITextFieldDelegate的功能从未命中。
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool

编辑:cancelActionsubmitAction不会在点击这些字段时触发。

最佳答案

这是适用于解决方案的完整演示模块。使用 Xcode 11.4/iOS 13.4 测试
demo
另见内联重要评论

struct AlertControl: UIViewControllerRepresentable {

    @Binding var textString: String
    @Binding var show: Bool

    var title: String
    var message: String

    func makeUIViewController(context: UIViewControllerRepresentableContext<AlertControl>) -> UIViewController {
        return UIViewController() // holder controller - required to present alert
    }

    func updateUIViewController(_ viewController: UIViewController, context: UIViewControllerRepresentableContext<AlertControl>) {
        guard context.coordinator.alert == nil else { return }
        if self.show {
            let alert = UIAlertController(title: title, message: message, preferredStyle: .alert)
            context.coordinator.alert = alert

            alert.addTextField { textField in
                textField.placeholder = "Enter some text"
                textField.text = self.textString            // << initial value if any
                textField.delegate = context.coordinator    // << use coordinator as delegate
            }
            alert.addAction(UIAlertAction(title: "cancel", style: .destructive) { _ in
                // your action here
            })
            alert.addAction(UIAlertAction(title: "Submit", style: .default) { _ in
                // your action here
            })

            DispatchQueue.main.async { // must be async !!
                viewController.present(alert, animated: true, completion: {
                    self.show = false  // hide holder after alert dismiss
                    context.coordinator.alert = nil
                })
            }
        }
    }

    func makeCoordinator() -> AlertControl.Coordinator {
        Coordinator(self)
    }

    class Coordinator: NSObject, UITextFieldDelegate {
        var alert: UIAlertController?
        var control: AlertControl
        init(_ control: AlertControl) {
            self.control = control
        }

        func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
            if let text = textField.text as NSString? {
                self.control.textString = text.replacingCharacters(in: range, with: string)
            } else {
                self.control.textString = ""
            }
            return true
        }
    }
}

// Demo view for Alert Controll
struct DemoAlertControl: View {
    @State private var text = ""
    @State private var showAlert = false

    var body: some View {
        VStack {
            Button("Alert") { self.showAlert = true }
                .background(AlertControl(textString: self.$text, show: self.$showAlert,
                         title: "Title goes here", message: "Message goes here"))
            Text(self.text)
        }
    }
}

关于ios - SwiftUI:UIAlertController 的 textField 在 UIAlertAction 中没有响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61266301/

相关文章:

ios - 当我要运行我的应用程序时,Xcode 7.2.1仅显示“通用设备”,而不是iPhone和iPad的列表

ios - 如何使用 Voice Over 确定当前聚焦的 UITableViewCell 的索引路径?

iphone - iOS 邮件消息 View ,如 UIWebView

ios - 关闭已由呈现 View Controller 呈现的呈现 View Controller

swift - 如何在 macOS 的 SwiftUI 中使用菜单命令实现多窗口?

swift - 在 tvOS 上的 SwiftUI 中更改按钮的颜色

ios - Xcode 中的 "Frame Rectangle"与 "Layout Rectangle"

objective-c - 自动释放方法泄漏

swiftui - 当变量被网络请求填充时如何初始化变量

javascript - 在 iOS8 中使用 .focus() 将在触摸后显示虚拟键盘和滚动页面