vds_ios/VDS/Publishers/UITextField+Publisher.swift
Matt Bruce 268570b3bb added publishers
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-08-18 15:20:56 -05:00

19 lines
344 B
Swift

//
// UITextField+Publisher.swift
// VDS
//
// Created by Matt Bruce on 8/18/22.
//
import Foundation
import UIKit
import Combine
extension UITextField {
public var textPublisher: AnyPublisher<String, Never> {
publisher(for: .editingChanged)
.map { _ in self.text ?? "" }
.eraseToAnyPublisher()
}
}