22 lines
356 B
Objective-C
22 lines
356 B
Objective-C
//
|
|
// JSHandleClass.h
|
|
// TestDemo
|
|
//
|
|
// Created by Etrent on 2022/9/5.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface JSHandleClass : NSObject
|
|
|
|
|
|
+ (void)init;
|
|
+ (void)walleConnectFun:(NSString*) urlTypesStr;
|
|
+ (void)sendMessageFun:(NSString*) jsonStr;
|
|
+ (void)sendContractFun:(NSString*) jsonStr;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|