JS与OC交互的一些简单方法调用

一、自定义的html简单代码

<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf8">
            <script language="javascript">
<!--            callFullScreen_H5();-->
<!--            function callFullScreen_H5 (){-->
<!--                alert(111);-->
<!--                callFullScreen();-->
<!--                alert(222);-->
<!--            }-->
            function locationClick0() {
                callScanCode();
            }
            function locationClick1() {
                JavacallUserInfo();
            }
            function locationClick2() {
                callCutCrossScreen();
            }
            function locationClick3() {
                callCutVerticalScreen();
            }
            function locationClick4() {
                callFullScreen();
            }
            function locationClick5() {
                callCommonScreen();
            }
            function locationClick6() {
                callTelePhoneScreen(10086);
            }

            function callBackScanCode(location) {
                asyncAlert(location);
                document.getElementById("returnValue").value = location;
            }
            function ShowUserInfoFromAndroid(location) {
                asyncAlert(location);
                document.getElementById("returnValue").value = location;
            }
            function asyncAlert(content) {
                setTimeout(function(){
                           alert(content);
                           },1);
            }
            
            
                </script>
            </head>
    
    <body>
        <h1>这是按钮调用</h1>
        <input type="button" value="扫码" onclick="locationClick0()" />
        <input type="button" value="用户数据" onclick="locationClick1()" />
        <input type="button" value="设备横屏" onclick="locationClick2()" />
        <input type="button" value="设备竖屏" onclick="locationClick3()" />
        <input type="button" value="隐藏导航栏" onclick="locationClick4()" />
        <input type="button" value="显示导航栏" onclick="locationClick5()" />
        <input type="button" value="拨打电话" onclick="locationClick6()" />
        <textarea id ="returnValue" type="value" rows="5" cols="50">
        
        </textarea>
        
    </body>
</html>

二、oc代码实现
1、导入#import <MessageUI/MessageUI.h> 和#import <JavaScriptCore/JavaScriptCore.h>框架,添加UIWebViewDelegate,MFMessageComposeViewControllerDelegate,MFMailComposeViewControllerDelegate代理方法
2、加载html文件

NSURLCache * cache = [NSURLCache sharedURLCache];
    [cache removeAllCachedResponses];
    [cache setDiskCapacity:0];
    
    self.currentWebView = [[UIWebView alloc] initWithFrame:self.view.frame];
    [self.view addSubview:self.currentWebView];
    self.currentWebView.delegate = self;
    NSURL *htmlURL = [[NSBundle mainBundle] URLForResource:@"index.html" withExtension:nil];
    NSURLRequest *request = [NSURLRequest requestWithURL:htmlURL];
    [self.currentWebView loadRequest:request];

3、方法实现

#pragma - mark WebViewDelegate  必须都实现,否则会有警告
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{
    return true;
}
//这个代理必须实现,否则将无法注入JS
- (void)webViewDidStartLoad:(UIWebView *)webView{
    [self addSreenChangeActions];
}
- (void)webViewDidFinishLoad:(UIWebView *)webView{
    [self addCustomActions];
}
- (void)webViewDidFinishLoad:(UIWebView *)webView{
    [self addCustomActions];
}

#pragma mark - private method
- (void)addSreenChangeActions{
    
    JSContext *context = [self.currentWebView valueForKeyPath:@"documentView.webView.mainFrame.javaScriptContext"];
    [self callCutCrossScreenWithContext:context];
    [self callCutVerticalScreenWithContext:context];
    [self callFullScreenWithContext:context];
    [self callCommonScreenWithContext:context];
    [self callcallTelePhoneWithContext:context];
}
- (void)addCustomActions{
    
    JSContext *context = [self.currentWebView valueForKeyPath:@"documentView.webView.mainFrame.javaScriptContext"];
    [self callScanCodeWithContext:context];
    [self callUserInfoWithContext:context];
}
- (void)callUserInfoWithContext:(JSContext *)context{
    __WEAK
    context[@"JavacallUserInfo"] = ^() {
        //返回用户数据
        //        NSArray *arr=[[NSUserDefaults standardUserDefaults]objectForKey:@"infomationArr"];
        //        NSDictionary *dict = @{@"uid":arr[0],@"nickName":arr[1],@"email":arr[2],@"loginName":arr[3]};
        NSDictionary *dict = @{@"uid":@"uid",@"nickName":@"uid",@"email":@"uid",@"loginName":@"uid"};
        [ws userInfoToHTMLWithUserDict:dict];
    };
}
- (void)userInfoToHTMLWithUserDict:(NSDictionary *)userDic{
    
    JSContext *context = [self.currentWebView valueForKeyPath:@"documentView.webView.mainFrame.javaScriptContext"];
    NSData *jsonData = [NSJSONSerialization dataWithJSONObject:userDic options:NSJSONWritingPrettyPrinted error:nil];
    NSString *jsonStrr=[[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
    NSString *jsStr = [NSString stringWithFormat:@"ShowUserInfoFromAndroid(%@)",jsonStrr];
    [context evaluateScript:jsStr];
}

- (void)callScanCodeWithContext:(JSContext *)context{
    __WEAK
    context[@"callScanCode"] = ^() {
        [ws scanResultStr:@"扫码数据"];
    };
}

- (void)callCutCrossScreenWithContext:(JSContext *)context{
    __WEAK
    context[@"callCutCrossScreen"] = ^() {
        //切换横屏
        dispatch_async(dispatch_get_main_queue(), ^{
            [ws interfaceOrientation:UIInterfaceOrientationLandscapeRight];
            self.currentWebView.frame = self.view.bounds;
        });
    };
}
- (void)callCutVerticalScreenWithContext:(JSContext *)context{
    __WEAK
    context[@"callCutVerticalScreen"] = ^() {
        //切换竖屏
        dispatch_async(dispatch_get_main_queue(), ^{
            [ws interfaceOrientation:UIInterfaceOrientationPortrait];
            self.currentWebView.frame = self.view.bounds;
        });
    };
}

- (void)callFullScreenWithContext:(JSContext *)context{
    __WEAK
    context[@"callFullScreen"] = ^() {
        //满屏隐藏状态栏和头部
        dispatch_async(dispatch_get_main_queue(), ^{
            self.isShowStaus = YES;
            [ws prefersStatusBarHidden];
            [ws.navigationController setNavigationBarHidden:YES animated:YES];
            self.currentWebView.frame = self.view.bounds;
        });
    };
}
- (void)callCommonScreenWithContext:(JSContext *)context{
    __WEAK
    context[@"callCommonScreen"] = ^() {
        //恢复显示状态栏和头部
        dispatch_async(dispatch_get_main_queue(), ^{
            self.isShowStaus = NO;
            [ws prefersStatusBarHidden];
            [ws.navigationController setNavigationBarHidden:NO animated:YES];
            self.currentWebView.frame = self.view.bounds;
        });
    };
}

- (void)callcallTelePhoneWithContext:(JSContext *)context{
    __WEAK
    context[@"callTelePhoneScreen"] = ^(NSString *phoneStr) {
        //恢复显示状态栏和头部
        dispatch_async(dispatch_get_main_queue(), ^{
            self.isShowStaus = NO;
            [ws prefersStatusBarHidden];
            [ws.navigationController setNavigationBarHidden:NO animated:YES];
            self.currentWebView.frame = self.view.bounds;
        });
    };
}
- (void)scanResultStr:(NSString *)resultStr{

    JSContext *context = [self.currentWebView valueForKeyPath:@"documentView.webView.mainFrame.javaScriptContext"];
    NSString *jsStr = [NSString stringWithFormat:@"callBackScanCode('%@')",resultStr];
    [context evaluateScript:jsStr];
}
- (BOOL)prefersStatusBarHidden {
    return self.isShowStaus;
}
/**
 *  横竖屏切换接口
 *
 *  @param orientation 切换方向
 */
- (void)interfaceOrientation:(UIInterfaceOrientation)orientation{
    if ([[UIDevice currentDevice] respondsToSelector:@selector(setOrientation:)]) {
        SEL selector = NSSelectorFromString(@"setOrientation:");
        NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[UIDevice instanceMethodSignatureForSelector:selector]];
        [invocation setSelector:selector];
        [invocation setTarget:[UIDevice currentDevice]];
        int val = orientation;
        // 从2开始是因为0 1 两个参数已经被selector和target占用
        [invocation setArgument:&val atIndex:2];
        [invocation invoke];
    }
}

- (BOOL)shouldAutorotate{
    return YES;
}
- (UIInterfaceOrientationMask)supportedInterfaceOrientations{
    return UIInterfaceOrientationMaskAll;
}

4、效果图

Simulator Screen Shot - iPhone 7 Plus - 2017-11-02 at 11.31.05.png

邮箱、短信、电话请跳转http://www.jianshu.com/p/8cf6396f6934查看

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,607评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,047评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,496评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,405评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,400评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,479评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,883评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,535评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,743评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,544评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,612评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,309评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,881评论 3 306
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,891评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,136评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,783评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,316评论 2 342

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,010评论 4 62
  • 一、简介 近两年随着HTML5的迅速发展与日趋成熟,越来越多的移动开发者选择使用HTML5来进行混合开发,不仅节约...
    RainyGY阅读 1,850评论 1 12
  • 这个月立了秋,虽然气温变化不大,但看着这两个字,还是有一种夏天逝去、有一点淡淡的说不出的感觉。 立秋那天,Lisa...
    正如暮色降临阅读 384评论 0 0
  • 时间既可爱又可怕,我们在时间的旅行中,开阔了我们的眼界,增长了我们的知识,成熟了我们的心灵,我们在时间的给予中成长...
    蓉我不是英雄阅读 344评论 0 2
  • 看着商姐晒的毕业照片,感慨油然而生。三年,弹指一挥间!时间总是跑着,跳着,急着奔向下一个节点,每每想来,深感惶恐。...
    Oak水木阅读 125评论 0 0