This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/iOS/Pod/Classes/DoricJSExecutorProtocal.h

24 lines
501 B
C
Raw Normal View History

2019-07-25 21:03:31 +08:00
//
// DoricJSEngineProtocal.h
// Doric
//
// Created by pengfei.zhou on 2019/7/25.
//
#import <Foundation/Foundation.h>
#import <JavaScriptCore/JavaScriptCore.h>
NS_ASSUME_NONNULL_BEGIN
2019-07-25 21:10:29 +08:00
@protocol DoricJSExecutorProtocal <NSObject>
2019-07-25 21:03:31 +08:00
2019-07-29 13:48:27 +08:00
- (NSString *) loadJSScript:(NSString *)script source:(NSString *)source;
2019-07-25 21:03:31 +08:00
2019-07-29 13:48:27 +08:00
- (void) injectGlobalJSObject:(NSString *)name obj:(id)obj;
2019-07-25 21:03:31 +08:00
2019-07-29 13:48:27 +08:00
- (JSValue *) invokeObject: (NSString *)objName method:(NSString *)funcName args:(NSArray *)args;
2019-07-25 21:03:31 +08:00
@end
NS_ASSUME_NONNULL_END