本篇文章主要介绍了"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