Files
youle_app_ios/msext/Class/RootVC/Bridgetwo.m
2023-12-27 20:38:37 +08:00

31 lines
594 B
Objective-C
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//
// Bridge.m
// JS_OC_Call
// ios大师群150245203欢迎您的加入
// Created by 亮亮 on 16/9/7.
// Copyright © 2016年 钱袋宝. All rights reserved.
//
#import "Bridgetwo.h"
#import "AppDelegate.h"
@implementation Bridgetwo
@synthesize delegate;
//一下方法都是只是打了个log 等会看log 以及参数能对上就说明js调用了此处的iOS 原生方法
-(void)backgameData:(NSString *)data
{
[self.delegate backgameData:data];
}
-(void)finishweb
{
[self.delegate finishweb];
}
-(void)browser:(NSString *)url
{
[self.delegate browser:url];
}
@end