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

18 lines
294 B
Swift

//
// Button+Publisher.swift
// VDS
//
// Created by Matt Bruce on 8/18/22.
//
import Foundation
import UIKit
import Combine
extension UIButton {
public var tapPublisher: AnyPublisher<UIButton, Never> {
publisher(for: .touchUpInside)
.eraseToAnyPublisher()
}
}