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.
32 lines
878 B
32 lines
878 B
// |
|
// RACDelegateProxy.h |
|
// ReactiveObjC |
|
// |
|
// Created by Cody Krieger on 5/19/12. |
|
// Copyright (c) 2012 GitHub, Inc. All rights reserved. |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
|
|
@class RACSignal<__covariant ValueType>; |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
// A private delegate object suitable for using |
|
// -rac_signalForSelector:fromProtocol: upon. |
|
@interface RACDelegateProxy : NSObject |
|
|
|
// The delegate to which messages should be forwarded if not handled by |
|
// any -signalForSelector: applications. |
|
@property (nonatomic, unsafe_unretained) id rac_proxiedDelegate; |
|
|
|
// Creates a delegate proxy capable of responding to selectors from `protocol`. |
|
- (instancetype)initWithProtocol:(Protocol *)protocol; |
|
|
|
// Calls -rac_signalForSelector:fromProtocol: using the `protocol` specified |
|
// during initialization. |
|
- (RACSignal *)signalForSelector:(SEL)selector; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|