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.
31 lines
864 B
31 lines
864 B
// |
|
// NSUserDefaults+RACSupport.h |
|
// ReactiveObjC |
|
// |
|
// Created by Matt Diephouse on 12/19/13. |
|
// Copyright (c) 2013 GitHub, Inc. All rights reserved. |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
|
|
@class RACChannelTerminal; |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface NSUserDefaults (RACSupport) |
|
|
|
/// Creates and returns a terminal for binding the user defaults key. |
|
/// |
|
/// **Note:** The value in the user defaults is *asynchronously* updated with |
|
/// values sent to the channel. |
|
/// |
|
/// key - The user defaults key to create the channel terminal for. |
|
/// |
|
/// Returns a channel terminal that sends the value of the user defaults key |
|
/// upon subscription, sends an updated value whenever the default changes, and |
|
/// updates the default asynchronously with values it receives. |
|
- (RACChannelTerminal *)rac_channelTerminalForKey:(NSString *)key; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|