Files
midi_ios/Pods/ReactiveObjC/ReactiveObjC/UIImagePickerController+RACSignalSupport.h
2025-08-14 10:07:49 +08:00

38 lines
1.2 KiB
Objective-C

//
// UIImagePickerController+RACSignalSupport.h
// ReactiveObjC
//
// Created by Timur Kuchkarov on 28.03.14.
// Copyright (c) 2014 GitHub. All rights reserved.
//
#import <UIKit/UIKit.h>
@class RACDelegateProxy;
@class RACSignal<__covariant ValueType>;
NS_ASSUME_NONNULL_BEGIN
@interface UIImagePickerController (RACSignalSupport)
/// A delegate proxy which will be set as the receiver's delegate when any of the
/// methods in this category are used.
@property (nonatomic, strong, readonly) RACDelegateProxy *rac_delegateProxy;
/// Creates a signal for every new selected image.
///
/// When this method is invoked, the `rac_delegateProxy` will become the
/// receiver's delegate. Any previous delegate will become the -[RACDelegateProxy
/// rac_proxiedDelegate], so that it receives any messages that the proxy doesn't
/// know how to handle. Setting the receiver's `delegate` afterward is considered
/// undefined behavior.
///
/// Returns a signal which will send the dictionary with info for the selected image.
/// Caller is responsible for picker controller dismissal. The signal will complete
/// itself when the receiver is deallocated or when user cancels selection.
- (RACSignal<NSDictionary *> *)rac_imageSelectedSignal;
@end
NS_ASSUME_NONNULL_END