1234567891011121314151617181920212223242526272829303132333435 |
- //
- // UITableViewHeaderFooterView+RACSignalSupport.h
- // ReactiveObjC
- //
- // Created by Syo Ikeda on 12/30/13.
- // Copyright (c) 2013 GitHub, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class RACSignal<__covariant ValueType>;
- @class RACUnit;
- NS_ASSUME_NONNULL_BEGIN
- // This category is only applicable to iOS >= 6.0.
- @interface UITableViewHeaderFooterView (RACSignalSupport)
- /// A signal which will send a RACUnit whenever -prepareForReuse is invoked upon
- /// the receiver.
- ///
- /// Examples
- ///
- /// [[[self.cancelButton
- /// rac_signalForControlEvents:UIControlEventTouchUpInside]
- /// takeUntil:self.rac_prepareForReuseSignal]
- /// subscribeNext:^(UIButton *x) {
- /// // do other things
- /// }];
- @property (nonatomic, strong, readonly) RACSignal<RACUnit *> *rac_prepareForReuseSignal;
- @end
- NS_ASSUME_NONNULL_END
|