RxSwift/RxCocoa/iOS/UIButton+Rx.swift

19 lines
332 B
Swift
Raw Normal View History

//
// UIButton+Rx.swift
// RxCocoa
//
// Created by Krunoslav Zaher on 3/28/15.
// Copyright (c) 2015 Krunoslav Zaher. All rights reserved.
//
import Foundation
2015-08-01 16:13:26 +03:00
#if !RX_NO_MODULE
2015-04-10 02:52:51 +03:00
import RxSwift
2015-08-01 16:13:26 +03:00
#endif
import UIKit
extension UIButton {
public var rx_tap: Observable<Void> {
return rx_controlEvents(.TouchUpInside)
}
}