| 1234567891011121314151617181920212223 |
- //
- // UIControl+RACSignalSupport.h
- // ReactiveObjC
- //
- // Created by Josh Abernathy on 4/17/12.
- // Copyright (c) 2012 GitHub, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class RACSignal<__covariant ValueType>;
- NS_ASSUME_NONNULL_BEGIN
- @interface UIControl (RACSignalSupport)
- /// Creates and returns a signal that sends the sender of the control event
- /// whenever one of the control events is triggered.
- - (RACSignal<__kindof UIControl *> *)rac_signalForControlEvents:(UIControlEvents)controlEvents;
- @end
- NS_ASSUME_NONNULL_END
|