本文转载至 http://www.verydemo.com/demo_c101_i46895.html

一、与webView进行交互,调用web页面中的需要传参的函数时,参数需要带单引号,或者双引号(双引号需要进行转义在转义字符前加\),在传递json字符串时不需要加单引号或双引号。

1 -(void)webViewDidFinishLoad:(UIWebView *)webView
2 {
3     NSString *sendJsStr=[NSString stringWithFormat:@"openFile(\"%@\")",jsDocPathStr];
4   [webView stringByEvaluatingJavaScriptFromString:sendJsStr];
5 }

2、在该代理方法中判断与webView的交互,可通过html里定义的协议实现

1 - (BOOL)webView:(UIWebView*)webView shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType

3、只有在webView加载完毕之后在能够调用对应页面中的js方法。(对应方法如第一条)

4、为webView添加背景图片

1 approvalWebView.backgroundColor=[UIColor clearColor];
2 approvalWebView.opaque=NO;//这句话很重要,webView是否是不透明的,no为透明
3 //在webView下添加个imageView展示图片就可以了

5、获取webView页面内容信息

1 NSString *docStr=[webView stringByEvaluatingJavaScriptFromString:@"document.documentElement.textContent"];//获取web页面内容信息,此处获取的是个json字符串
2  
3 SBJsonParser *parserJson=[[[SBJsonParser alloc]init]autorelease];
4  
5 NSDictionary *contentDic=[parserJson objectWithString:docStr];//将json字符串转化为字典

6、加载本地文件的方法

1 第一种方法:
2 NSString* path = [[NSBundle mainBundle] pathForResource:name ofType:@"html"inDirectory:@"mobile"];//mobile是根目录,name是文件名称,html是文件类型
3 [webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:path]]]; //加载本地文件
4 第二种方法:
5 NSString *resourcePath = [[NSBundle mainBundle] resourcePath]; 
6 NSString *filePath = [resourcePath stringByAppendingPathComponent:@"mobile.html"]; 
7 NSString *htmlstring=[[NSString alloc] initWithContentsOfFile:filePath  encoding:NSUTF8StringEncoding error:nil]; 
8 [uiwebview loadHTMLString:htmlstring baseURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]]];

7、将文件下载到本地址然后再用webView打开

01 NSString *resourceDocPath = [[NSString alloc] initWithString:[[[[NSBundle mainBundle]  resourcePath] stringByDeletingLastPathComponent] stringByAppendingPathComponent:@"Documents"]];
02  self.filePath = [resourceDocPath stringByAppendingPathComponent:[NSString stringWithFormat:@"maydoc%@",docType]];
03 NSData *attachmentData = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:theUrl]];
04 [attachmentData writeToFile:filePath atomically:YES];
05  NSURL *url = [NSURL fileURLWithPath:filePath];
06  NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
07  [attachmentWebView loadRequest:requestObj];
08 //删除指定目录下的文件
09  
10 NSFileManager *magngerDoc=[NSFileManager defaultManager];
11 [magngerDoc removeItemAtPath:filePath error:nil];

8、处理webView展示txt文档乱码问题

01 if ([theType isEqualToString:@".txt"])
02  {
03 //txt分带编码和不带编码两种,带编码的如UTF-8格式txt,不带编码的如ANSI格式txt
04 //不带的,可以依次尝试GBK和GB18030编码
05 NSString* aStr = [[NSString alloc] initWithData:attachmentData encoding:NSUTF8StringEncoding];
06 if (!aStr)
07 {
08 //用GBK<strong>进行</strong>编码
09 aStr=[[NSString alloc] initWithData:attachmentData encoding:0x80000632];
10 }
11 if (!aStr)
12 {
13 //用GBK编码不行,再用GB18030编码
14  aStr=[[NSString alloc] initWithData:attachmentData encoding:0x80000631];
15 }
16 //通过html语言<strong>进行</strong>排版
17  NSString* responseStr = [NSString stringWithFormat:
18                                  @"<HTML>"
19                                  "<head>"
20                                  "<title>Text View</title>"
21                                  "</head>"
22                                  "<BODY>"
23                                  "<pre>"
24                                  "%@"
25                                  "/pre>"
26                                  "</BODY>"
27                                  "</HTML>",
28                                  aStr];
29  [attachmentWebView loadHTMLString:responseStr baseURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]]];
30         return;
31  }

9 、使用webView加载本地或网络文件整个流程

01 1、 Loading a local PDF file into the web view
02  
03 - (void)viewDidLoad {
04     [super viewDidLoad];
05  //从本地加载
06     NSString *thePath = [[NSBundle mainBundle] pathForResource:@"iPhone_User_Guide" ofType:@"pdf"];
07     if (thePath) {
08         NSData *pdfData = [NSData dataWithContentsOfFile:thePath];
09         [(UIWebView *)self.view loadData:pdfData MIMEType:@"application/pdf"
10             textEncodingName:@"utf-8" baseURL:nil];
11     }
12 //从网络加载
13 [self.myWebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.apple.com/"]]];
14 }
15 2、The web-view delegate managing network loading
16  
17 - (void)webViewDidStartLoad:(UIWebView *)webView
18 {
19     // starting the load, show the activity indicator in the status bar
20     [UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
21 }
22   
23 - (void)webViewDidFinishLoad:(UIWebView *)webView
24 {
25     // finished loading, hide the activity indicator in the status bar
26     [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
27 }
28   
29 - (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error
30 {
31     // load error, hide the activity indicator in the status bar
32     [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
33   
34     // report the error inside the webview
35     NSString* errorString = [NSString stringWithFormat:
36                              @"<html><center><font size=+5 color='red'>An error occurred:<br>%@</font></center></html>",
37                              error.localizedDescription];
38     [self.myWebView loadHTMLString:errorString baseURL:nil];
39 }
40 3、Stopping a load request when the web view is to disappear
41  
42 - (void)viewWillDisappear:(BOOL)animated
43 {
44     if ( [self.myWebView loading] ) {
45         [self.myWebView stopLoading];
46     }
47     self.myWebView.delegate = nil;    // disconnect the delegate as the webview is hidden
48     [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
49 }
50 /************/
51 引用自苹果官方文档(displaying web content)

10、查找webView中的scrollview

01 - (void) addScrollViewListener
02 {
03     UIScrollView* currentScrollView;
04     for (UIView* subView in self.webView.subviews) {
05         if ([subView isKindOfClass:[UIScrollView class]]) {
06             currentScrollView = (UIScrollView*)subView;
07             currentScrollView.delegate = self;
08         }
09     }
10 }

11、去掉webView的阴影,做成类似scrollView

01 - (void)clearBackgroundWithColor:(UIColor*)color
02 {
03   // 去掉webview的阴影
04   self.backgroundColor = color;
05   for (UIView* subView in [self subviews])
06   {
07     if ([subView isKindOfClass:[UIScrollView class]]) {
08       for (UIView* shadowView in [subView subviews])
09       {
10         if ([shadowView isKindOfClass:[UIImageView class]]) {
11           [shadowView setHidden:YES];
12         }
13       }
14     }
15   }
16  
17 }

12、取消长按webView上的链接弹出actionSheet的问题

1 -(void)webViewDidFinishLoad:(UIWebView *)webView
2 {
3  [webView stringByEvaluatingJavaScriptFromString:@"document.documentElement.style.webkitTouchCallout = 'none';"];
4 }

13、取消webView上的超级链接加载问题

1 -(BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
2 {
3     if (navigationType==UIWebViewNavigationTypeLinkClicked) {
4         return NO;
5     }
6     else {
7         return YES;
8     }
9 }

14、一、webView在ios5.1之前的bug:在之前的工程中使用webView加载附件,webView支持doc,excel,ppt,pdf等格式,但这些附件必须先下载到本地然后在加载到webView上才可以显示, 当附件下载到本地之后刚刚开始加载到webView上时,此时退出附件页面会导致程序崩溃。会崩溃是由于webView控件内部没有把相关代理取消掉,所以导致退出之后程序崩溃。

二、webView在5.1上的bug:之前项目需求要webView可以左右活动,但在往webView上加载页面时导致页面加载不全,这个bug是由于webView本身的缓存所致。(还有待研究)

15、在使用webView进行新浪微博分享时,webView会自动保存登陆的cookie导致项目中的分享模块有些问题,删除 webView的cookie的方法

01 -(void)deleteCookieForDominPathStr:(NSString *)thePath
02 {
03     //删除本地cookie,thePath为cookie路径通过打印cookie可知道其路径   
04     for(NSHTTPCookie *cookie in [[NSHTTPCookieStorage sharedHTTPCookieStorage] cookies]) {
05          
06         if([[cookie domain] isEqualToString:thePath]) {
07              
08             [[NSHTTPCookieStorage sharedHTTPCookieStorage] deleteCookie:cookie];
09         }
10     }
11 }

16、在UIWebView中使用flashScrollIndicators

使用UIScrollView时,我们可以使用flashScrollIndicators方法显示滚动标识然后消失,告知用户此页面可以滚动,后面还有更多内容。UIWebView内部依赖于UIScrollView,但是其没有flashScrollIndicators方法,但可以通过其他途径使用此方法,如下所示。

1 for (id subView in [webView subviews])
2 {   if ([subView respondsToSelector:@selector(flashScrollIndicators)])     
3      {
4        [subView flashScrollIndicators];
5      }
6 }

上述代码片段可以到webViewDidFinishLoad回调中使用,加载完网页内容后flash显示滚动标识。

17、根据内容获取UIWebView的高度

有时候需要根据不同的内容调整UIWebView的高度,以使UIWebView刚好装下所有内容,不用拖动,后面也不会留白。有两种方式可根据加载内容获取UIWebView的合适高度,但都需要在网页内容加载完成后才可以,即需要在webViewDidFinishLoad回调中使用。

①.使用sizeThatFits方法。

1 - (void)webViewDidFinishLoad:(UIWebView *)webView
2 {    
3     CGRect frame = webView.frame;   
4     frame.size.height = 1;    
5     webView.frame = frame;    
6     CGSize fittingSize = [webView sizeThatFits:CGSizeZero];    
7     frame.size = fittingSize;   
8     webView.frame = frame;
9 }

sizeThatFits方法有个问题,如果当前UIView的大小比刚好合适的大小还大,则返回当前的大小,不会返回最合适的大小值,所以使用sizeThatFits前,先将UIWebView的高度设为最小,即1,然后再使用sizeThatFits就会返回刚好合适的大小。

②、使用JavaScript

1 - (void)webViewDidFinishLoad:(UIWebView *)webView
2 {     CGRect frame = webView.frame;  
3       NSString *fitHeight = [webview stringByEvaluatingJavaScriptFromString:@"document.body.scrollHeight;"];    
4      frame.size.height = [fitHeight floatValue];   
5      webView.frame = frame;
6 }

参考:
Three useful UIWebView tweaks
How to determine UIWebView height based on content, within a variable height UITableView?
How to determine the content size of a UIWebView?
clientHeight,offsetHeight和scrollHeight区别

与webView进行交互,webView小记的更多相关文章

  1. WebView JS交互 JSBridge 案例 原理 MD

    Markdown版本笔记 我的GitHub首页 我的博客 我的微信 我的邮箱 MyAndroidBlogs baiqiantao baiqiantao bqt20094 baiqiantao@sina ...

  2. WebView JS交互 addJavascriptInterface MD

    Markdown版本笔记 我的GitHub首页 我的博客 我的微信 我的邮箱 MyAndroidBlogs baiqiantao baiqiantao bqt20094 baiqiantao@sina ...

  3. 客户端相关知识学习(十一)之Android H5交互Webview实现localStorage数据存储

    前言 最近有一个需求是和在app中前端本地存储相关的,所以恶补了一下相关知识 webView开启支持H5 LocalStorage存储 有些时候我们发现写的本地存储没有起作用,那是因为默认WebVie ...

  4. JS和webView的交互

    JSContext的交互方式最为简单快捷: 1.申明一个JSContext对象 self.jsRunner = [[JSContext alloc] init]; 2.在原生中定义申明一个JS函数方法 ...

  5. 【WebView】Android WebView中的Cookie操作

    Hybrid App(混合式应用)的开发过程中少不了与WebView的交互,在涉及到账户体系的产品中,包含了一种登录状态的传递.比如,在Native(原生)界面的登录操作,进入到Web界面时,涉及到账 ...

  6. Android WebView Memory Leak WebView内存泄漏

    在这次开发过程中,需要用到webview展示一些界面,但是加载的页面如果有很多图片就会发现内存占用暴涨,并且在退出该界面后,即使在包含该webview的Activity的destroy()方法中,使用 ...

  7. 安卓android WebView Memory Leak WebView内存泄漏

    Android WebView Memory Leak WebView内存泄漏 在这次开发过程中,需要用到webview展示一些界面,但是加载的页面如果有很多图片就会发现内存占用暴涨,并且在退出该界面 ...

  8. 背水一战 Windows 10 (65) - 控件(WebView): 对 WebView 中的内容截图, 通过 Share Contract 分享 WebView 中的被选中的内容

    [源码下载] 背水一战 Windows 10 (65) - 控件(WebView): 对 WebView 中的内容截图, 通过 Share Contract 分享 WebView 中的被选中的内容 作 ...

  9. android webview js交互 第一节 (java和js交互)

    转载请注明出处         挺帅的移动开发专栏  http://blog.csdn.net/wangtingshuai/article/details/8631835        在androi ...

随机推荐

  1. pycharm批量清楚pyc、$py.class文件

    By default, the .pyc and $py.class files are ignored, and thus are not visible in the Project tool w ...

  2. 前后台JSON传值得一个问题和异常处理net.sf.json.JSONException: Unquotted string '"name"'

    项目中做导入的时候遇到个bug,用JSON.stringify()序列号json对象传给后台:然后后台通过getPatameter()获取值时,前台的英文引号变成了中文引号. 原来代码如下:(自己排查 ...

  3. 转:敏捷方式scrum 方案

    http://www.cnblogs.com/taven/archive/2010/10/17/1853386.html 现在敏捷开发是越来越火了,人人都在谈敏捷,人人都在学习Scrum和XP... ...

  4. 转:100.64. 开头IP地址问题

    100.64. 开头IP地址问题 姚洪楼 发表于 学习备忘录 分类,标签: 电信 08二月2015 0 之前调试过一个路由器在成功设置DDNS的情况下外网依旧无法访问的情况,当时没有多想什么,一直以为 ...

  5. Kwickserver

    Kwickserver 欢迎来到Kwickserver的主页 Kwickserver是什么? Kwickserver是一个易于安装的和易于使用的服务器应用程序,从CD安装在PC兼容的硬件和坚持webi ...

  6. Node.js 网页瘸腿爬虫初体验

    延续上一篇,想把自己博客的文档标题利用Node.js的request全提取出来,于是有了下面的初哥爬虫,水平有限,这只爬虫目前还有点瘸腿,请看官你指正了. // 内置http模块,提供了http服务器 ...

  7. 在html页面中直接嵌入图片数据

    一般情况,通常是在html页面中应用图片的链接,如: <img src="http://baidu.com/logo.gif">   但是,这样的前提是我们需要将图片先 ...

  8. PHP SPL库

    SPL,PHP 标准库(Standard PHP Library) ,此从 PHP 5.0 起内置的组件和接口,并且从 PHP5.3 已逐渐的成熟.SPL 其实在所有的 PHP5 开发环境中被内置,同 ...

  9. mongoDB 索引的用法

    http://www.cnblogs.com/lipan/archive/2011/03/28/1997202.html MongoDB中的索引其实类似于关系型数据库,都是为了提高查询和排序的效率的, ...

  10. Android事件的分发

    1 http://blog.csdn.net/guolin_blog/article/details/9097463 2