You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
851 B
34 lines
851 B
// |
|
// 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
|
|
|