您的位置:首页 > 移动开发

UIWebView - 使用方法总结

2016-11-24 11:26 218 查看

使用方法总结

1.创建、设置代理

[objc] view
plain copy







UIWebView *webView=[[UIWebView alloc] initWithFrame:CGRectMake(0, 20, 320, 300)];

webView.delegate = self;

2.加载网页

[objc] view
plain copy







NSURL *url=[NSURL URLWithString:@"http://www.google.com.hk"]; //创建URL

NSURLRequest *request=[[NSURLRequest alloc] initWithURL:url]; //创建NSURLRequest

[webView loadRequest:request];<span style="white-space:pre"> </span>//加载

3.加载本地资源

[objc] view
plain copy







NSURL* url = [NSURL fileURLWithPath:filePath]; <span style="white-space:pre"> </span> //创建URL

NSURLRequest* request = [NSURLRequest requestWithURL:url]; //创建NSURLRequest

[webView loadRequest:request]; //加载

UIWebView 还支持将一个NSString对象作为源来加载。你可以为其提供一个基础URL,来指导UIWebView对象如何跟随链接和加载远程资源:

[objc] view
plain copy







[webView loadHTMLString:myHTML baseURL:[NSURL URLWithString:@"http://baidu.com"]];

4.是否与用户交互(即用户能不能控制webView)

[objc] view
plain copy







[webView setUserInteractionEnabled:YES];

5.显示UIWebView(加载视图)

[objc] view
plain copy







[self.view addSubview:webView];

6.导航

[objc] view
plain copy







[webView goBack]; //返回

[webView goForward]; //向前

[webView reload]; //重新加载数据(重载)

[webView stopLoading]; //停止加载数据(取消载入内容)

7.自动对页面进行缩放以适应屏幕

[objc] view
plain copy







webView.scalesPageToFit = YES;

8.自动检测网页上的电话号码,单击可以拨打

[objc] view
plain copy







webView.detectsPhoneNumbers = YES;

9.UIWebView 还支持将一个NSString对象作为源来加载。你可以为其提供一个基础URL,来指导UIWebView对象如何跟随链接和加载远程资源

[objc] view
plain copy







[webView loadHTMLString:myHTML baseURL:[NSURL URLWithString:@"http://baidu.com"]];

10.UIWebView和JS交互

(1)在Objective-C代码中调用JS

使用stringByEvaluatingJavaScriptFromString方法,需要等到UIWebView中的页面加载完成之后去调用。

[objc] view
plain copy







-(void) webViewDidFinishLoad:(UIWebView *)webView

[self.activityViewstopAnimating];

[myWebView stringByEvaluatingJavaScriptFromString:@"function test(){ alert(123123123)}"];

[myWebView stringByEvaluatingJavaScriptFromString:@"test();"];//调用

(2)在JS中调用Objective-C代码

[objc] view
plain copy







//JS代码:

function sendCommand(cmd,param)

{

var url="testapp:"+cmd+":"+param;

document.location = url;

}

function clickLink()

{

sendCommand("alert","你好吗?");

}

[objc] view
plain copy







//Objective-C代码:

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

{

NSString *requestString = [[request URL] absoluteString];

NSArray *components = [requestString componentsSeparatedByString:@":"];

if ([components count] > 1 && [(NSString *)[components objectAtIndex:0] isEqualToString:@"testapp"])

{

if([(NSString *)[components objectAtIndex:1] isEqualToString:@"alert"])

{

UIAlertView *alert = [[UIAlertView alloc]

initWithTitle:@"Alert from Cocoa Touch" message:[components objectAtIndex:2]

delegate:self cancelButtonTitle:nil

otherButtonTitles:@"OK", nil nil nil];

[alert show];

}

return NO;

}

return YES;

}

UIWebView的委托方法

1.web视图指示加载内容时通知。应该返回YES开始加载。导航提供的类型参数,是指请求的来源,可以是下列任何一个:

[objc] view
plain copy







//UIWebViewNavigationTypeLinkClicked 用户触击了一个链接

//UIWebViewNavigationTypeFormSubmitted 用户提交了一个表单

//UIWebViewNavigationTypeBackForward 用户触击前进或返回按钮

//UIWebViewNavigationTypeReload 用户触击重新加载的按钮

//UIWebViewNavigationTypeFormResubmitted 用户重复提交表单

//UIWebViewNavigationTypeOther 发生其它行为

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

2.开始加载的时候执行该方法。

[objc] view
plain copy







- (void)webViewDidStartLoad:(UIWebView *)webView; //当网页视图已经开始加载一个请求后,得到通知

3.加载完成的时候执行该方法。

[objc] view
plain copy







- (void)webViewDidFinishLoad:(UIWebView *)webView; //当网页视图结束加载一个请求后,得到通知

4.加载出错的时候执行该方法。

[objc] view
plain copy







- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error; //当在请求加载中发生错误时,得到通知。会提供一个NSSError对象,以标识所发生错误类型

UIWebView常用注意点:

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

[objc] view
plain copy







-(void)webViewDidFinishLoad:(UIWebView *)webView

{

NSString *sendJsStr = [NSString stringWithFormat:@"openFile(\"%@\")",jsDocPathStr];

[webView stringByEvaluatingJavaScriptFromString:sendJsStr];

}

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

[objc] view
plain copy







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

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

4、为webView添加背景图片:

[objc] view
plain copy







approvalWebView.backgroundColor = [UIColor clearColor];

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

5、获取webView页面内容信息:

[objc] view
plain copy







NSString *docStr=[webView stringByEvaluatingJavaScriptFromString:@"document.documentElement.textContent"];//获取web页面内容信息,此处获取的是个json字符串

SBJsonParser *parserJson=[[[SBJsonParser alloc]init]autorelease];

NSDictionary *contentDic=[parserJson objectWithString:docStr];//将json字符串转化为字典

6、 加载本地文件的方法:

[objc] view
plain copy







//第一种方法:

NSString* path = [[NSBundle mainBundle] pathForResource:name ofType:@"html" inDirectory:@"mobile"];//mobile是根目录,name是文件名称,html是文件类型

[webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:path]]]; //加载本地文件

[objc] view
plain copy







//第二种方法:

NSString *resourcePath = [[NSBundle mainBundle] resourcePath];

NSString *filePath = [resourcePath stringByAppendingPathComponent:@"mobile.html"];

NSString *htmlstring=[[NSString alloc] initWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil];

[uiwebview loadHTMLString:htmlstring baseURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]]];

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

[objc] view
plain copy







NSString *resourceDocPath = [[NSString alloc] initWithString:[[[[NSBundle mainBundle] resourcePath] stringByDeletingLastPathComponent] stringByAppendingPathComponent:@"Documents"]];

self.filePath = [resourceDocPath stringByAppendingPathComponent:[NSString stringWithFormat:@"maydoc%@",docType]];

NSData *attachmentData = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:theUrl]];

[attachmentData writeToFile:filePath atomically:YES];

NSURL *url = [NSURL fileURLWithPath:filePath];

NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];

[attachmentWebView loadRequest:requestObj];

指定目录下的文件

NSFileManager *magngerDoc=[NSFileManager defaultManager];

[magngerDoc removeItemAtPath:filePath error:nil];

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

[objc] view
plain copy







if ([theType isEqualToString:@".txt"])

{

//txt分带编码和不带编码两种,带编码的如UTF-8格式txt,不带编码的如ANSI格式txt

//不带的,可以依次尝试GBK和GB18030编码

NSString* aStr = [[NSString alloc] initWithData:attachmentData encoding:NSUTF8StringEncoding];

if (!aStr)

{

//用GBK进行编码

aStr=[[NSString alloc] initWithData:attachmentData encoding:0x80000632];

}

if (!aStr)

{

//用GBK编码不行,再用GB18030编码

aStr=[[NSString alloc] initWithData:attachmentData encoding:0x80000631];

}

//通过html语言进行排版

NSString* responseStr = [NSString stringWithFormat:@"""""""""%@""/pre>""""",aStr];

[attachmentWebView loadHTMLString:responseStr baseURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]]];

return;

}

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

(1)、 Loading a local PDF file into the web view

[objc] view
plain copy







- (void)viewDidLoad

{

[super viewDidLoad];

//从本地加载

NSString *thePath = [[NSBundle mainBundle] pathForResource:@"iPhone_User_Guide" ofType:@"pdf"];

if (thePath)

{

NSData *pdfData = [NSData dataWithContentsOfFile:thePath];

[(UIWebView *)self.view loadData:pdfData MIMEType:@"application/pdf"

textEncodingName:@"utf-8" baseURL:nil];

}

//从网络加载

[self.myWebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.apple.com/"]]];

}

(2)、The web-view delegate managing network loading

[objc] view
plain copy







- (void)webViewDidStartLoad:(UIWebView *)webView

{

// starting the load, show the activity indicator in the status bar

[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;

}

- (void)webViewDidFinishLoad:(UIWebView *)webView

{

// finished loading, hide the activity indicator in the status bar

[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;

}

- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error

{

// load error, hide the activity indicator in the status bar

[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;

// report the error inside the webview

NSString* errorString = [NSString stringWithFormat:

@"An error occurred:

%@",

error.localizedDescription];

[self.myWebView loadHTMLString:errorString baseURL:nil];

}

(3)、Stopping a load request when the web view is to disappear

[objc] view
plain copy







- (void)viewWillDisappear:(BOOL)animated

{

if ( [self.myWebView loading] )

{

[self.myWebView stopLoading];

}

self.myWebView.delegate = nil; // disconnect the delegate as the webview is hidden

[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;

}

/************/

引用自苹果官方文档(displaying web content)

10、查找webView中的scrollview:

[objc] view
plain copy







- (void) addScrollViewListener

{

UIScrollView* currentScrollView;

for (UIView* subView in self.webView.subviews)

{

if ([subView isKindOfClass:[UIScrollView class]])

{

currentScrollView = (UIScrollView*)subView;

currentScrollView.delegate = self;

}

}

}

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

[objc] view
plain copy







- (void)clearBackgroundWithColor:(UIColor*)color

{

//去掉webview的阴影

self.backgroundColor = color;

for (UIView* subView in [self subviews])

{

if ([subView isKindOfClass:[UIScrollView class]])

{

for (UIView* shadowView in [subView subviews])

{

if ([shadowView isKindOfClass:[UIImageView class]])

{

[shadowView setHidden:YES];

}

}

}

}

}

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

[objc] view
plain copy







-(void)webViewDidFinishLoad:(UIWebView *)webView

{

[webView stringByEvaluatingJavaScriptFromString:@"document.documentElement.style.webkitTouchCallout = 'none';"];

}

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

[objc] view
plain copy







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

{

if (navigationType==UIWebViewNavigationTypeLinkClicked)

{

return NO;

}

else

{

return YES;

}

}

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的方法:

[objc] view
plain copy







-(void)deleteCookieForDominPathStr:(NSString *)thePath

{

//删除本地cookie,thePath为cookie路径通过打印cookie可知道其路径

for(NSHTTPCookie *cookie in [[NSHTTPCookieStorage sharedHTTPCookieStorage] cookies])

{

if([[cookie domain] isEqualToString:thePath])

{

[[NSHTTPCookieStorage sharedHTTPCookieStorage] deleteCookie:cookie];

}

}

}

16、在UIWebView中使用flashScrollIndicators

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

[objc] view
plain copy







for (id subView in [webView subviews])

{

if ([subView respondsToSelector:@selector(flashScrollIndicators)])

{

[subView flashScrollIndicators];

}

}

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

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

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

①.使用sizeThatFits方法。

[objc] view
plain copy







- (void)webViewDidFinishLoad:(UIWebView *)webView

{

CGRect frame = webView.frame;

frame.size.height = 1;

webView.frame = frame;

CGSize fittingSize = [webView sizeThatFits:CGSizeZero];

frame.size = fittingSize;

webView.frame = frame;

}

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

②、使用JavaScript

[objc] view
plain copy







- (void)webViewDidFinishLoad:(UIWebView *)webView

{

CGRect frame = webView.frame;

NSString *fitHeight = [webview stringByEvaluatingJavaScriptFromString:@"document.body.scrollHeight;"];

frame.size.height = [fitHeight floatValue];

webView.frame = frame;

}

总结:

首先 对IOS开发中的UIWebView控件的基本使用进行初步的详解,提到了创建、设置属性、设置背景、怎么样加载网页内容等一系列的基础点,然后阐述使用UIWebView控件时常用用注意点,经常需要用到的地方,需要注意的地方,使得对开发ios APP混合模式的桥梁---UIWebView控件更加的了解、熟悉。UIWebView既能够加载服务器提供的URI,又能够加载本地的资源文件,还能够加载服务器返回的网页界面代码,可想而知UIWebView是多么强大的一控件桥梁,以后在开发中使用到的地方会越来越多。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: