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.
26 lines
690 B
26 lines
690 B
// |
|
// NSString+RACSupport.h |
|
// ReactiveObjC |
|
// |
|
// Created by Josh Abernathy on 5/11/12. |
|
// Copyright (c) 2012 GitHub, Inc. All rights reserved. |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
|
|
@class RACScheduler; |
|
@class RACSignal<__covariant ValueType>; |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface NSString (RACSupport) |
|
|
|
// Reads in the contents of the file using +[NSString stringWithContentsOfURL:usedEncoding:error:]. |
|
// Note that encoding won't be valid until the signal completes successfully. |
|
// |
|
// scheduler - cannot be nil. |
|
+ (RACSignal<NSString *> *)rac_readContentsOfURL:(NSURL *)URL usedEncoding:(NSStringEncoding *)encoding scheduler:(RACScheduler *)scheduler; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|