27 lines
611 B
Objective-C
Executable File
27 lines
611 B
Objective-C
Executable File
//
|
|
// Bridge.h
|
|
// JS_OC_Call
|
|
//
|
|
// Created by 亮亮 on 16/9/7.
|
|
// Copyright © 2016年 钱袋宝. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <JavaScriptCore/JavaScriptCore.h>
|
|
@protocol webURLDelegatetwo <NSObject>
|
|
-(void)backgameData:(NSString *)data;
|
|
-(void)finishweb;
|
|
-(void)browser:(NSString *)url;
|
|
@end
|
|
@protocol JSProtocol <JSExport>
|
|
-(void)backgameData:(NSString *)data;
|
|
-(void)browser:(NSString *)url;
|
|
-(void)finishweb;
|
|
@end
|
|
@interface Bridgetwo : NSObject<JSProtocol>
|
|
{
|
|
id<webURLDelegatetwo> delegate;
|
|
}
|
|
@property (nonatomic ,retain)id<webURLDelegatetwo> delegate;
|
|
@end
|