No Description

RNFetchBlob.h 857B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. //
  2. // RNFetchBlob.h
  3. //
  4. // Created by wkh237 on 2016/4/28.
  5. //
  6. //XXX: DO NO REMOVE THIS LINE IF YOU'RE USING IT ON RN > 0.40 PROJECT
  7. #ifndef RNFetchBlob_h
  8. #define RNFetchBlob_h
  9. #if __has_include(<React/RCTAssert.h>)
  10. #import <React/RCTLog.h>
  11. #import <React/RCTRootView.h>
  12. #import <React/RCTBridge.h>
  13. #import <React/RCTEventDispatcher.h>
  14. #import <React/RCTBridgeModule.h>
  15. #else
  16. #import "RCTBridgeModule.h"
  17. #import "RCTLog.h"
  18. #import "RCTRootView.h"
  19. #import "RCTBridge.h"
  20. #import "RCTEventDispatcher.h"
  21. #endif
  22. #import <UIKit/UIKit.h>
  23. @interface RNFetchBlob : NSObject <RCTBridgeModule, UIDocumentInteractionControllerDelegate> {
  24. NSString * filePathPrefix;
  25. }
  26. @property (nonatomic) NSString * filePathPrefix;
  27. @property (retain) UIDocumentInteractionController * documentController;
  28. + (RCTBridge *)getRCTBridge;
  29. @end
  30. #endif /* RNFetchBlob_h */