RNBridgeManager.h
811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
// RNBridgeManager.h
// B2CMall
//
// Created by 钱鋆 on 2019/3/19.
// Copyright © 2019 Facebook. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <React/RCTBridgeModule.h>
#import <React/RCTLog.h>
#import <QuickLook/QuickLook.h>
#import <React/RCTEventEmitter.h>
#import <React/RCTBridge.h>
#import "ClipViewController.h"
NS_ASSUME_NONNULL_BEGIN
@interface SecurityModule : NSObject <RCTBridgeModule>
@end
@interface SystemModule : RCTEventEmitter <RCTBridgeModule,UINavigationControllerDelegate, UIImagePickerControllerDelegate,ClipPhotoDelegate>
{
NSString *str_FilePath;
NSString *str_passportId;
CGRect tabbarRect;
RCTPromiseResolveBlock currentResolve;
}
+ (void)emitEventWithName:(NSString *)name andDic:(NSDictionary *)dic;
@end
NS_ASSUME_NONNULL_END