Objective-C与JavaScript的交互

UIWebView是iOS最常用的SDK之一,它有一个stringByEvaluatingJavaScriptFromString方法可以将javascript嵌入页面中,通过这个方法我们可以在iOS中与UIWebView中的网页元素交互。

stringByEvaluatingJavaScriptFromString

使用stringByEvaluatingJavaScriptFromString方法,需要等UIWebView中的页面加载完成之后去调用。我们在界面上拖放一个UIWebView控件。在Load中将google mobile加载到这个控件中,代码如下:

复制代码

- (void)viewDidLoad

{

[super viewDidLoad];

webview.backgroundColor = [UIColor clearColor];

webview.scalesPageToFit =YES;

webview.delegate =self;

NSURL *url =[[NSURL alloc] initWithString:@"http://www.google.com.hk/m?gl=CN&hl=zh_CN&source=ihp"];

NSURLRequest *request =  [[NSURLRequest alloc] initWithURL:url];

[webview loadRequest:request];

}

复制代码

我们在webViewDidFinishLoad方法中就可以通过javascript操作界面元素了。

1、获取当前页面的url。

- (void)webViewDidFinishLoad:(UIWebView *)webView {

NSString *currentURL = [webView stringByEvaluatingJavaScriptFromString:@"document.location.href"];

}

2、获取页面title:

- (void)webViewDidFinishLoad:(UIWebView *)webView {

NSString *currentURL = [webView stringByEvaluatingJavaScriptFromString:@"document.location.href"];

NSString *title = [webview stringByEvaluatingJavaScriptFromString:@"document.title"];

}

3、修改界面元素的值。

NSString *js_result = [webView stringByEvaluatingJavaScriptFromString:@"document.getElementsByName('q')[0].value='朱祁林';"];

4、表单提交:

NSString *js_result2 = [webView stringByEvaluatingJavaScriptFromString:@"document.forms[0].submit(); "];

这样就实现了在google搜索关键字:“朱祁林”的功能。

5、插入js代码

上面的功能我们可以封装到一个js函数中,将这个函数插入到页面上执行,代码如下:

复制代码

[webView stringByEvaluatingJavaScriptFromString:@"var script = document.createElement('script');"

"script.type = 'text/javascript';"

"script.text = \"function myFunction() { "

"var field = document.getElementsByName('q')[0];"

"field.value='朱祁林';"

"document.forms[0].submit();"

"}\";"

"document.getElementsByTagName('head')[0].appendChild(script);"];

[webView stringByEvaluatingJavaScriptFromString:@"myFunction();"];

复制代码

看上面的代码:

a、首先通过js创建一个script的标签,type为'text/javascript'。

b、然后在这个标签中插入一段字符串,这段字符串就是一个函数:myFunction,这个函数实现google自动搜索关键字的功能。

c、然后使用stringByEvaluatingJavaScriptFromString执行myFunction函数。

实例:

////  WebNewsViewController.m//  EzyCloud////  Created by Umbrella on 15/12/22.//  Copyright © 2015年 CloudTech. All rights reserved.//#import "WebNewsViewController.h"#import "UIView+Extension.h"#import "NSString+HCStringSIze.h"#import "MLKMenuPopover.h"#import "CloudCall2AppDelegate.h"@interface WebNewsViewController ()@property (nonatomic,copy) NSString *currentTitle;

@property (nonatomic,copy) NSString *currentURL;

@property (nonatomic,weak) UIWebView *webView;

@property (nonatomic,strong) UILabel *titleLabel;

@property (nonatomic,weak) MLKMenuPopover *menuPopover;

@end

@implementation WebNewsViewController

- (void)viewDidLoad {

[super viewDidLoad];

//添加webView

UIWebView *webView = [[UIWebView alloc]initWithFrame:CGRectMake(0, 0, screenWith, screenHeight - 64)];

[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:self.url]]];

webView.scalesPageToFit = YES;

[self.view addSubview:webView];

self.webView = webView;

self.webView.delegate = self;

//初始化导航栏

[self initialNavigation];

}

- (void)initialNavigation{

//导航栏左边按钮设置

UIView *leftView = [[UIView alloc]init];

//左边返回按钮

UIButton *backBtn = [UIButton buttonWithType:UIButtonTypeCustom];

UIImageView *backImgView = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 22, 22)];

backImgView.image = [UIImage imageNamed:@"back_normal_icon"];

UILabel *backLabel = [[UILabel alloc]initWithFrame:CGRectMake(CGRectGetMaxX(backImgView.frame),0,44,22)];

backLabel.font = [UIFont systemFontOfSize:17];

backLabel.textColor = [UIColor whiteColor];

backLabel.text = AppLocalizedString(@"Back");

backLabel.width = [backLabel.text sizeWithFont:backLabel.font maxW:60].width;

[backBtn addSubview:backImgView];

[backBtn addSubview:backLabel];

backBtn.frame = CGRectMake(0, 0,CGRectGetMaxX(backLabel.frame), 22);

[backBtn addTarget:self action:@selector(onClickBack) forControlEvents: UIControlEventTouchUpInside];

[leftView addSubview:backBtn];

//左边关闭按钮

UIButton *closeBtn = [UIButton buttonWithType:UIButtonTypeCustom];

UILabel *closeLabel = [[UILabel alloc]initWithFrame:CGRectMake(0,0,44,22)];

closeLabel.font = [UIFont systemFontOfSize:17];

closeLabel.text = AppLocalizedString(@"Close");

closeLabel.textColor = [UIColor whiteColor];

closeLabel.width = [closeLabel.text sizeWithFont:closeLabel.font maxW:60].width;

[closeBtn addSubview:closeLabel];

closeBtn.frame = CGRectMake(CGRectGetMaxX(backBtn.frame) + 5, 0,closeLabel.width, 22);

[closeBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];

[closeBtn addTarget:self action:@selector(onClickClose) forControlEvents: UIControlEventTouchUpInside];

[leftView addSubview:closeBtn];

leftView.frame = CGRectMake(0, 0, CGRectGetMaxX(closeBtn.frame), 22);

self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:leftView] ;

//设置导航栏右边按钮

UIButton *rightBarbtn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0,44, 44)];

rightBarbtn.imageEdgeInsets = UIEdgeInsetsMake(0, 14, 0, 0);

[rightBarbtn setImage:[UIImage imageNamed:@"three_point_normal_icon"] forState:UIControlStateNormal];

[rightBarbtn setImage:[UIImage imageNamed:@"three_point_down_icon"] forState:UIControlStateHighlighted];

[rightBarbtn addTarget:self action:@selector(rightBarbtnClick) forControlEvents:UIControlEventTouchUpInside];

UIBarButtonItem *rightBarItem = [[UIBarButtonItem alloc] initWithCustomView:rightBarbtn];

self.navigationItem.rightBarButtonItem = rightBarItem;

//设置导航栏中间部分

CGFloat titleLabelX = CGRectGetMaxX(leftView.frame)+5;

UILabel *titleLabel = [[UILabel alloc]initWithFrame:CGRectMake(titleLabelX, 0, screenWith - titleLabelX - rightBarbtn.width,22)];

titleLabel.textColor = [UIColor whiteColor];

titleLabel.font = [UIFont systemFontOfSize:17];

self.navigationItem.titleView = titleLabel;

self.titleLabel = titleLabel;

}

#pragma mark - 导航栏事件

-(void)rightBarbtnClick{

BOOL isEN = [CloudCall2AppDelegate sharedInstance].appLanguageType == AppLanguageTypeEN;

NSArray *menuItems;

NSArray *menuIcons;

menuItems = [NSArray arrayWithObjects:AppLocalizedString(@"Send to Chat"),AppLocalizedString(@"Share on Moments"),AppLocalizedString(@"Open the browser"),nil] ;

menuIcons = @[@"friend_ic",@"friends-r_ic",@"earth"];

MLKMenuPopover *menuPopover = [[MLKMenuPopover alloc] initWithFrame:CGRectMake(screenWith-(isEN?205:165),75,isEN?200:160,187) menuItems:menuItems menuIcons:menuIcons];

self.menuPopover = menuPopover;

self.menuPopover.menuPopoverDelegate = self;

[self.menuPopover showInView:[UIApplication sharedApplication].keyWindow];

}

/**

*  下拉菜单的选择代理方法

*

*  @param menuPopover

*  @param selectedIndex

*/

- (void)menuPopover:(MLKMenuPopover *)menuPopover didSelectMenuItemAtIndex:(NSInteger)selectedIndex{

switch (selectedIndex) {

case 0:

{

//发送给朋友

}

break;

case 1:

{

//分享到朋友圈

}

break;

case 2:{

NSURL *theURL = [self.webView.request URL];

NSString *urlString = [theURL absoluteString];

if ([urlString rangeOfString:@"Language="].location == NSNotFound ) {

urlString = [NSString stringWithFormat:@"%@/?Language=%@",urlString,[[CloudCall2AppDelegate sharedInstance] getCurrentLangageForHttp]];

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlString]];

} else {

[[UIApplication sharedApplication] openURL:theURL];

}

}

break;

default:

break;

}

}

//导航栏返回按钮

- (void)onClickBack{

if ([self.webView canGoBack]) {

[self.webView goBack];

}else {

[self onClickClose];

}

}

//导航栏关闭按钮

- (void)onClickClose{

[self.navigationController popToRootViewControllerAnimated:YES];

}

#pragma mark webView代理

//获取页面title

- (void)webViewDidFinishLoad:(UIWebView *)webView {

self.currentURL = [self.webView stringByEvaluatingJavaScriptFromString:@"document.location.href"];

self.currentTitle = [self.webView stringByEvaluatingJavaScriptFromString:@"document.title"];

self.titleLabel.text = self.currentTitle;

}

- (void)didReceiveMemoryWarning {

[super didReceiveMemoryWarning];

}

@end

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

推荐阅读更多精彩内容