ASP源码.NET源码PHP源码JSP源码JAVA源码DELPHI源码PB源码VC源码VB源码Android源码
当前位置:首页 >> 低调看直播体育app软件下载 >> IOS开发 >> iOS在WebApp中使用JS调用iOS的函数,iOS调JS函数

iOS在WebApp中使用JS调用iOS的函数,iOS调JS函数

来源:网络整理     时间:2015-06-24     关键词:

本篇文章主要介绍了"iOS在WebApp中使用JS调用iOS的函数,iOS调JS函数",主要涉及到方面的内容,对于IOS开发感兴趣的同学可以参考一下: // // ViewController.m // ss // // Created by 王立龙 on 15/6/24. // Copyright (...

//
//  ViewController.m
//  ss
//
//  Created by 王立龙 on 15/6/24.
//  Copyright (c) 2015年 CloudChain. All rights reserved.
//

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.

    //页面的 url网址
    NSURLRequest *req = [[NSURLRequest alloc]initWithURL:[NSURL URLWithString:@"http://10.161.84.55/demo.html"]];
    [_webView loadRequest:req];
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

//webView每调用一次url  都会启动这个函数
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType;

{
    //可以根据url  1.传递参数   2.调用特定的函数
    NSLog(@"%@",request.URL);

    //调用js的函数 we  是传给js函数的参数
    [webView stringByEvaluatingJavaScriptFromString:@"window.Mycallback('we')"];
    return YES;
}
@end

参考:http://www.it165.net/pro/html/201406/15068.html

以上就介绍了iOS在WebApp中使用JS调用iOS的函数,iOS调JS函数,包括了方面的内容,希望对IOS开发有兴趣的朋友有所帮助。

本文网址链接:http://www.codes51.com/article/detail_144223.html

相关图片

相关文章