当前位置:   article > 正文

WKWebView代替UIWebView使用_ios isformainframe

ios isformainframe

webView是我们日常开发中不可缺少的一个组件,通常我们都是使用UIWebView来实现的,不过大多数情况下,UIWebView的表现却不尽如人意(最直观的就是内存消耗严重,特别是有视频的时候,有木有!)
iOS8之后苹果推荐使用WKWebView替代UIWebView,其主要的有点有:

  1. 在性能、稳定性
  2. WKWebView更多的支持HTML5的特性
  3. WKWebView更快,占用内存可能只有UIWebView的1/3 ~ 1/4
  4. WKWebView高达60fps的滚动刷新率和丰富的内置手势
  5. WKWebView具有Safari相同的JavaScript引擎
  6. WKWebView增加了加载进度属性
  7. 将UIWebViewDelegate和UIWebView重构成了14个类与3个协议官方链接

Classes:

  • WKBackForwardList: 之前访问过的 web 页面的列表,可以通过后退和前进动作来访问到。
  • WKBackForwardListItem: webview 中后退列表里的某一个网页。
  • WKFrameInfo: 包含一个网页的布局信息。
  • WKNavigation: 包含一个网页的加载进度信息。
  • WKNavigationAction: 包含可能让网页导航变化的信息,用于判断是否做出导航变化。
  • WKNavigationResponse: 包含可能让网页导航变化的返回内容信息,用于判断是否做出导航变化。
  • WKPreferences: 概括一个 webview 的偏好设置。
  • WKProcessPool: 表示一个 web 内容加载池。
  • WKUserContentController: 提供使用 JavaScript post 信息和注射 script 的方法。
  • WKScriptMessage: 包含网页发出的信息。
  • WKUserScript: 表示可以被网页接受的用户脚本。
  • WKWebViewConfiguration: 初始化 webview 的设置。
  • WKWindowFeatures: 指定加载新网页时的窗口属性。

Protocols

  • WKNavigationDelegate: 提供了追踪主窗口网页加载过程和判断主窗口和子窗口是否进行页面加载新页面的相关方法。
  • WKScriptMessageHandler: 提供从网页中收消息的回调方法。
  • WKUIDelegate: 提供用原生控件显示网页的方法回调。

二、简单使用

1.首先自然是导入头文件(iOS9之后默认不支持HTTP协议,别忘了在Info.plist里面添加支持)
#import<WebKit/WebKit.h>
2.初始化


(1)由于WKWebView的父类是UIView,所以可以用我们最常用的方法来初始化:

WKWebView *webView = [[WKWebView alloc]initWithFrame:self.view.frame];

(2)WKWebView自己也具备一个自己的初始化方法

- (instancetype)initWithFrame:(CGRect)frame configuration:(WKWebViewConfiguration*)configuration

这里面WKWebViewConfiguration就是一个上面讲述的重构了类中的一个,负责的内容是:

A WKWebViewConfiguration object is a collection of properties used to initialize a web view.
WKWebViewConfiguration 是一个属性的集合 用来初始化web视图。

这个类包含众多的属性,预知详情请见官方文档,这里介绍几个常用的属性(偏好的设置):

  1. //初始化一个WKWebViewConfiguration对象
  2. WKWebViewConfiguration *config = [WKWebViewConfiguration new];
  3. //初始化偏好设置属性:preferences
  4. config.preferences = [WKPreferences new];
  5. //The minimum font size in points default is 0;
  6. config.preferences.minimumFontSize = 10;
  7. //是否支持JavaScript
  8. config.preferences.javaScriptEnabled = YES;
  9. //不通过用户交互,是否可以打开窗口
  10. config.preferences.javaScriptCanOpenWindowsAutomatically = NO;
  11. WKWebView *webView = [[WKWebView alloc]initWithFrame:self.view.frame configuration:config];
  12. [self.view addSubview:webView];

3.加载网页

最基础的方法和UIWebView一样

  1. NSURL *url = [NSURL URLWithString:@"www.jianshu.com"];
  2. NSURLRequest *request = [NSURLRequest requestWithURL:url];
  3. [webView loadRequest:request];

这里有几个加载的方法:

  1. //加载本地URL文件
  2. - (nullable WKNavigation *)loadFileURL:(NSURL *)URL
  3. allowingReadAccessToURL:(NSURL *)readAccessURL
  4. //加载本地HTML字符串
  5. - (nullable WKNavigation *)loadHTMLString:(NSString *)string
  6. baseURL:(nullable NSURL *)baseURL;
  7. //加载二进制数据
  8. - (nullable WKNavigation *)loadData:(NSData *)data MIMEType:(NSString *)MIMEType characterEncodingName:(NSString *)characterEncodingName baseURL:(NSURL *)baseURL

每个方法都会返回一个WKNavigation对象,官方介绍是

一个WKNavigation对象包含信息跟踪加载一个网页的进展。
A WKNavigation object contains information for tracking the loading progress of a webpage.

导航web视图加载方法返回的对象,也是传递到导航委托方法来唯一地标识一个网页加载从开始到结束。它没有自己的方法或属性。
A navigation object is returned from the web view load methods and is also passed to the navigation delegate methods to uniquely identify a webpage load from start to finish. It has no method or properties of its own.

然后我创建了两个WKWebView,加载同样的url,打印的结果是不同的地址:


这个属性在WKWebView的代理方法里面有用到,我的理解就是用来标记不同的webView的。

三、所有相关的类的API

这里的东西比较多,想看一些高级使用的直接跳过看下一节,或者直接下载Demo

1.WKWebView

  1. //上文介绍过的偏好配置
  2. @property (nonatomic, readonly, copy) WKWebViewConfiguration *configuration;
  3. // 导航代理
  4. @property (nullable, nonatomic, weak) id <WKNavigationDelegate> navigationDelegate;
  5. // 用户交互代理
  6. @property (nullable, nonatomic, weak) id <WKUIDelegate> UIDelegate;
  7. // 页面前进、后退列表
  8. @property (nonatomic, readonly, strong) WKBackForwardList *backForwardList;
  9. // 默认构造器
  10. - (instancetype)initWithFrame:(CGRect)frame configuration:(WKWebViewConfiguration *)configuration NS_DESIGNATED_INITIALIZER;
  11. //加载请求API
  12. - (nullable WKNavigation *)loadRequest:(NSURLRequest *)request;
  13. // 加载URL
  14. - (nullable WKNavigation *)loadFileURL:(NSURL *)URL allowingReadAccessToURL:(NSURL *)readAccessURL NS_AVAILABLE(10_11, 9_0);
  15. // 直接加载HTML
  16. - (nullable WKNavigation *)loadHTMLString:(NSString *)string baseURL:(nullable NSURL *)baseURL;
  17. // 直接加载data
  18. - (nullable WKNavigation *)loadData:(NSData *)data MIMEType:(NSString *)MIMEType characterEncodingName:(NSString *)characterEncodingName baseURL:(NSURL *)baseURL NS_AVAILABLE(10_11, 9_0);
  19. // 前进或者后退到某一页面
  20. - (nullable WKNavigation *)goToBackForwardListItem:(WKBackForwardListItem *)item;
  21. // 页面的标题,支持KVO的
  22. @property (nullable, nonatomic, readonly, copy) NSString *title;
  23. // 当前请求的URL,支持KVO的
  24. @property (nullable, nonatomic, readonly, copy) NSURL *URL;
  25. // 标识当前是否正在加载内容中,支持KVO的
  26. @property (nonatomic, readonly, getter=isLoading) BOOL loading;
  27. // 当前加载的进度,范围为[0, 1]
  28. @property (nonatomic, readonly) double estimatedProgress;
  29. // 标识页面中的所有资源是否通过安全加密连接来加载,支持KVO的
  30. @property (nonatomic, readonly) BOOL hasOnlySecureContent;
  31. // 当前导航的证书链,支持KVO
  32. @property (nonatomic, readonly, copy) NSArray *certificateChain NS_AVAILABLE(10_11, 9_0);
  33. // 是否可以招待goback操作,它是支持KVO的
  34. @property (nonatomic, readonly) BOOL canGoBack;
  35. // 是否可以执行gofarward操作,支持KVO
  36. @property (nonatomic, readonly) BOOL canGoForward;
  37. // 返回上一页面,如果不能返回,则什么也不干
  38. - (nullable WKNavigation *)goBack;
  39. // 进入下一页面,如果不能前进,则什么也不干
  40. - (nullable WKNavigation *)goForward;
  41. // 重新载入页面
  42. - (nullable WKNavigation *)reload;
  43. // 重新从原始URL载入
  44. - (nullable WKNavigation *)reloadFromOrigin;
  45. // 停止加载数据
  46. - (void)stopLoading;
  47. // 执行JS代码
  48. - (void)evaluateJavaScript:(NSString *)javaScriptString completionHandler:(void (^ __nullable)(__nullable id, NSError * __nullable error))completionHandler;
  49. // 标识是否支持左、右swipe手势是否可以前进、后退
  50. @property (nonatomic) BOOL allowsBackForwardNavigationGestures;
  51. // 自定义user agent,如果没有则为nil
  52. @property (nullable, nonatomic, copy) NSString *customUserAgent NS_AVAILABLE(10_11, 9_0);
  53. // 在iOS上默认为NO,标识不允许链接预览
  54. @property (nonatomic) BOOL allowsLinkPreview NS_AVAILABLE(10_11, 9_0);
  55. #if TARGET_OS_IPHONE
  56. /*! @abstract The scroll view associated with the web view.
  57. */
  58. @property (nonatomic, readonly, strong) UIScrollView *scrollView;
  59. #endif
  60. #if !TARGET_OS_IPHONE
  61. // 标识是否支持放大手势,默认为NO
  62. @property (nonatomic) BOOL allowsMagnification;
  63. // 放大因子,默认为1
  64. @property (nonatomic) CGFloat magnification;
  65. // 根据设置的缩放因子来缩放页面,并居中显示结果在指定的点
  66. - (void)setMagnification:(CGFloat)magnification centeredAtPoint:(CGPoint)point;
  67. #endif

2. WKPreferences偏好设置

  1. WKWebViewConfiguration *config = [[WKWebViewConfiguration alloc] init];
  2. // 设置偏好设置
  3. config.preferences = [[WKPreferences alloc] init];
  4. // 默认为0
  5. config.preferences.minimumFontSize = 10;
  6. // 默认认为YES
  7. config.preferences.javaScriptEnabled = YES;
  8. // 在iOS上默认为NO,表示不能自动通过窗口打开
  9. config.preferences.javaScriptCanOpenWindowsAutomatically = NO;

3.WKProcessPool内容处理池

这个类没有公开的方法和属性,而且也并不需要配置,可以暂时忽略。

4. WKUserContentController内容交互控制器

我们要通过JS与webview内容交互,就需要到这个类了,它的所有属性及方法说明如下:

  1. // 只读属性,所有添加的WKUserScript都在这里可以获取到
  2. @property (nonatomic, readonly, copy) NSArray<WKUserScript *> *userScripts;
  3. // 注入JS
  4. - (void)addUserScript:(WKUserScript *)userScript;
  5. // 移除所有注入的JS
  6. - (void)removeAllUserScripts;
  7. // 添加scriptMessageHandler到所有的frames中,则都可以通过
  8. // window.webkit.messageHandlers.<name>.postMessage(<messageBody>)
  9. // 发送消息
  10. // 比如,JS要调用我们原生的方法,就可以通过这种方式了
  11. - (void)addScriptMessageHandler:(id <WKScriptMessageHandler>)scriptMessageHandler name:(NSString *)name;
  12. // 根据name移除所注入的scriptMessageHandler
  13. - (void)removeScriptMessageHandlerForName:(NSString *)name;

5. WKUserScript

在WKUserContentController中,所有使用到WKUserScript。WKUserContentController是用于与JS交互的类,而所注入的JS是WKUserScript对象。它的所有属性和方法如下:

  1. // JS源代码
  2. @property (nonatomic, readonly, copy) NSString *source;
  3. // JS注入时间
  4. @property (nonatomic, readonly) WKUserScriptInjectionTime injectionTime;
  5. // 只读属性,表示JS是否应该注入到所有的frames中还是只有main frame.
  6. @property (nonatomic, readonly, getter=isForMainFrameOnly) BOOL forMainFrameOnly;
  7. // 初始化方法,用于创建WKUserScript对象
  8. // source:JS源代码
  9. // injectionTime:JS注入的时间
  10. // forMainFrameOnly:是否只注入main frame
  11. - (instancetype)initWithSource:(NSString *)source injectionTime:(WKUserScriptInjectionTime)injectionTime forMainFrameOnly:(BOOL)forMainFrameOnly;

6.WKWebsiteDataStore存储的Web内容

iOS9.0以后才能使用这个类。是代表webView不同的数据类型,cookies、disk、memory caches、WebSQL、IndexedDB数据库和本地存储。版本适配的化就要放弃了。

  1. // 默认数据存储
  2. + (WKWebsiteDataStore *)defaultDataStore;
  3. // 返回非持久化存储,数据不会写入文件系统
  4. + (WKWebsiteDataStore *)nonPersistentDataStore;
  5. // 只读属性,表示是否是持久化存储
  6. @property (nonatomic, readonly, getter=isPersistent) BOOL persistent;
  7. // 获取所有web内容的数据存储类型集,比如cookies、disk等
  8. + (NSSet<NSString *> *)allWebsiteDataTypes;
  9. // 获取某些指定数据存储类型的数据
  10. - (void)fetchDataRecordsOfTypes:(NSSet<NSString *> *)dataTypes completionHandler:(void (^)(NSArray<WKWebsiteDataRecord *> *))completionHandler;
  11. // 删除某些指定类型的数据
  12. - (void)removeDataOfTypes:(NSSet<NSString *> *)dataTypes forDataRecords:(NSArray<WKWebsiteDataRecord *> *)dataRecords completionHandler:(void (^)(void))completionHandler;
  13. // 删除某些指定类型的数据且修改日期是指定的日期
  14. - (void)removeDataOfTypes:(NSSet<NSString *> *)websiteDataTypes modifiedSince:(NSDate *)date completionHandler:(void (^)(void))completionHandler;

7. WKWebsiteDataRecord

同样iOS9.0之后可以使用,website的数据存储记录类型,它只有两个属性:

  1. // 通常是域名
  2. @property (nonatomic, readonly, copy) NSString *displayName;
  3. // 存储的数据类型集
  4. @property (nonatomic, readonly, copy) NSSet<NSString *> *dataTypes;

8. WKNavigationDelegate

  1. @protocol WKNavigationDelegate <NSObject>
  2. @optional
  3. // 决定导航的动作,通常用于处理跨域的链接能否导航。WebKit对跨域进行了安全检查限制,不允许跨域,因此我们要对不能跨域的链接
  4. // 单独处理。但是,对于Safari是允许跨域的,不用这么处理。
  5. // 这个是决定是否Request
  6. - (void)webView:(WKWebView *)webView decidePolicyForNavigationAction:(WKNavigationAction *)navigationAction decisionHandler:(void (^)(WKNavigationActionPolicy))decisionHandler;
  7. // 决定是否接收响应
  8. // 这个是决定是否接收response
  9. // 要获取response,通过WKNavigationResponse对象获取
  10. - (void)webView:(WKWebView *)webView decidePolicyForNavigationResponse:(WKNavigationResponse *)navigationResponse decisionHandler:(void (^)(WKNavigationResponsePolicy))decisionHandler;
  11. // 当main frame的导航开始请求时,会调用此方法
  12. - (void)webView:(WKWebView *)webView didStartProvisionalNavigation:(null_unspecified WKNavigation *)navigation;
  13. // 当main frame接收到服务重定向时,会回调此方法
  14. - (void)webView:(WKWebView *)webView didReceiveServerRedirectForProvisionalNavigation:(null_unspecified WKNavigation *)navigation;
  15. // 当main frame开始加载数据失败时,会回调
  16. - (void)webView:(WKWebView *)webView didFailProvisionalNavigation:(null_unspecified WKNavigation *)navigation withError:(NSError *)error;
  17. // 当main frame的web内容开始到达时,会回调
  18. - (void)webView:(WKWebView *)webView didCommitNavigation:(null_unspecified WKNavigation *)navigation;
  19. // 当main frame导航完成时,会回调
  20. - (void)webView:(WKWebView *)webView didFinishNavigation:(null_unspecified WKNavigation *)navigation;
  21. // 当main frame最后下载数据失败时,会回调
  22. - (void)webView:(WKWebView *)webView didFailNavigation:(null_unspecified WKNavigation *)navigation withError:(NSError *)error;
  23. // 这与用于授权验证的API,与AFN、UIWebView的授权验证API是一样的
  24. - (void)webView:(WKWebView *)webView didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential *__nullable credential))completionHandler;
  25. // 当web content处理完成时,会回调
  26. - (void)webViewWebContentProcessDidTerminate:(WKWebView *)webView NS_AVAILABLE(10_11, 9_0);
  27. @end

9. WKNavigationResponse

WKNavigationResponse是导航响应类,通过它可以获取相关响应的信息:

  1. NS_CLASS_AVAILABLE(10_10, 8_0)
  2. @interface WKNavigationResponse : NSObject
  3. // 是否是main frame
  4. @property (nonatomic, readonly, getter=isForMainFrame) BOOL forMainFrame;
  5. // 获取响应response
  6. @property (nonatomic, readonly, copy) NSURLResponse *response;
  7. // 是否显示MIMEType
  8. @property (nonatomic, readonly) BOOL canShowMIMEType;
  9. @end

10. WKNavigationAction

WKNavigationAction对象包含关于导航的action的信息,用于make policy decisions。它只有以下几个属性:

  1. // 正在请求的导航的frame
  2. @property (nonatomic, readonly, copy) WKFrameInfo *sourceFrame;
  3. // 目标frame,如果这是新的window,它会是nil
  4. @property (nullable, nonatomic, readonly, copy) WKFrameInfo *targetFrame;
  5. // 导航类型,如下面的小标题WKNavigationType
  6. @property (nonatomic, readonly) WKNavigationType navigationType;
  7. // 导航的请求
  8. @property (nonatomic, readonly, copy) NSURLRequest *request;

11. WKUIDelegate

  1. @protocol WKUIDelegate <NSObject>
  2. @optional
  3. // 创建新的webview
  4. // 可以指定配置对象、导航动作对象、window特性
  5. - (nullable WKWebView *)webView:(WKWebView *)webView createWebViewWithConfiguration:(WKWebViewConfiguration *)configuration forNavigationAction:(WKNavigationAction *)navigationAction windowFeatures:(WKWindowFeatures *)windowFeatures;
  6. // webview关闭时回调
  7. - (void)webViewDidClose:(WKWebView *)webView NS_AVAILABLE(10_11, 9_0);
  8. // 调用JS的alert()方法
  9. - (void)webView:(WKWebView *)webView runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(void))completionHandler;
  10. // 调用JS的confirm()方法
  11. - (void)webView:(WKWebView *)webView runJavaScriptConfirmPanelWithMessage:(NSString *)message initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(BOOL result))completionHandler;
  12. // 调用JS的prompt()方法
  13. - (void)webView:(WKWebView *)webView runJavaScriptTextInputPanelWithPrompt:(NSString *)prompt defaultText:(nullable NSString *)defaultText initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(NSString * __nullable result))completionHandler;
  14. @end

12. WKBackForwardList

WKBackForwardList表示webview中可以前进或者后退的页面列表。其声明如下:

  1. NS_CLASS_AVAILABLE(10_10, 8_0)
  2. @interface WKBackForwardList : NSObject
  3. // 当前正在显示的item(页面)
  4. @property (nullable, nonatomic, readonly, strong) WKBackForwardListItem *currentItem;
  5. // 后一页,如果没有就是nil
  6. @property (nullable, nonatomic, readonly, strong) WKBackForwardListItem *backItem;
  7. // 前一页,如果没有就是nil
  8. @property (nullable, nonatomic, readonly, strong) WKBackForwardListItem *forwardItem;
  9. // 根据下标获取某一个页面的item
  10. - (nullable WKBackForwardListItem *)itemAtIndex:(NSInteger)index;
  11. // 可以进行goback操作的页面列表
  12. @property (nonatomic, readonly, copy) NSArray<WKBackForwardListItem *> *backList;
  13. // 可以进行goforward操作的页面列表
  14. @property (nonatomic, readonly, copy) NSArray<WKBackForwardListItem *> *forwardList;
  15. @end

13. WKBackForwardListItem

页面导航前进、后退列表项:

  1. NS_CLASS_AVAILABLE(10_10, 8_0)
  2. @interface WKBackForwardListItem : NSObject
  3. // 该页面的URL
  4. @property (readonly, copy) NSURL *URL;
  5. // 该页面的title
  6. @property (nullable, readonly, copy) NSString *title;
  7. // 初始请求该item的请求的URL
  8. @property (readonly, copy) NSURL *initialURL;
  9. @end

四WKWebView与JS实战

初始化的相关内容在这里不再赘述,提几个常常关注的点

1.添加对WKWebView属性的监听

这里面处理一下常用的三个:loading、title、estimatedProgress属性,分别用于判断是否正在加载、获取页面标题、当前页面载入进度:

  1. // 添加KVO监听
  2. [self.webView addObserver:self
  3. forKeyPath:@"loading"
  4. options:NSKeyValueObservingOptionNew
  5. context:nil];
  6. [self.webView addObserver:self
  7. forKeyPath:@"title"
  8. options:NSKeyValueObservingOptionNew
  9. context:nil];
  10. [self.webView addObserver:self
  11. forKeyPath:@"estimatedProgress"
  12. options:NSKeyValueObservingOptionNew
  13. context:nil];

这里不要忘记在界面消失的时候,移除监听

  1. [_webView removeObserver:self forKeyPath:@"loading" context:nil];//移除kvo
  2. [_webView removeObserver:self forKeyPath:@"title" context:nil];
  3. [_webView removeObserver:self forKeyPath:@"estimatedProgress" context:nil];

KVO方法:

  1. - (void)observeValueForKeyPath:(NSString *)keyPath
  2. ofObject:(id)object
  3. change:(NSDictionary<NSString *,id> *)change
  4. context:(void *)context
  5. {
  6. if ([keyPath isEqualToString:@"loading"])
  7. {
  8. NSLog(@"loading");
  9. } else if ([keyPath isEqualToString:@"title"])
  10. {
  11. self.title = self.webView.title;
  12. } else if ([keyPath isEqualToString:@"estimatedProgress"])
  13. {
  14. NSLog(@"progress: %f", self.webView.estimatedProgress);
  15. self.progressView.progress = self.webView.estimatedProgress;
  16. }
  17. // 加载完成
  18. if (!self.webView.loading)
  19. {
  20. [UIView animateWithDuration:0.5 animations:^{
  21. self.progressView.alpha = 0.0;
  22. }];
  23. }
  24. }

2.配置Js与WebView内容交互

前面提到了WKUserContentController是用于让Js注入对象的,注入对象后,JS端就可以使用这个方法:

window.webkit.messageHandlers.<name>.postMessage(<messageBody>)

用这个方法发送数据给iOS客户端,eg:

window.webkit.messageHandlers.senderModel.postMessage({body: 'sender message'});

这里面senderModel就是我们要注入的名称,注入之后,就可以在Js端调用了,传数据统一通过body来传递,类型可以随意,但是只支持OC的一些类型(NSNumber, NSString, NSDate, NSArray,NSDictionary, and NSNull类型。)

iOS端的部分代码:

  1. config.userContentController = [[WKUserContentController alloc] init];
  2. // 注入JS对象名称senderModel,当JS通过senderModel来调用时,我们可以在WKScriptMessageHandler代理中接收到
  3. [config.userContentController addScriptMessageHandler:self name:@"senderModel"];
  4. #pragma mark - WKScriptMessageHandler
  5. - (void)userContentController:(WKUserContentController *)userContentController
  6. didReceiveScriptMessage:(WKScriptMessage *)message {
  7. if ([message.name isEqualToString:@"senderModel"]) {
  8. // 打印所传过来的参数,只支持NSNumber, NSString, NSDate, NSArray,
  9. // NSDictionary, and NSNull类型
  10. //do something
  11. NSLog(@"%@", message.body);
  12. }
  13. }

3. WKUIDelegate代理方法

与JS的alert、confirm、prompt交互,我们希望用自己的原生界面,而不是JS的,就可以使用这个代理类来实现。

  • alert警告框函数:

    1. //alert 警告框
    2. -(void)webView:(WKWebView *)webView runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(void))completionHandler{
    3. UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"警告" message:@"调用alert提示框" preferredStyle:UIAlertControllerStyleAlert];
    4. [alert addAction:[UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
    5. completionHandler();
    6. }]];
    7. [self presentViewController:alert animated:YES completion:nil];
    8. NSLog(@"alert message:%@",message);
    9. }
  • confirm确认框函数:

  1. //confirm 确认框
  2. -(void)webView:(WKWebView *)webView runJavaScriptConfirmPanelWithMessage:(NSString *)message initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(BOOL))completionHandler{
  3. UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"确认框" message:@"调用confirm提示框" preferredStyle:UIAlertControllerStyleAlert];
  4. [alert addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  5. completionHandler(YES);
  6. }]];
  7. [alert addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
  8. completionHandler(NO);
  9. }]];
  10. [self presentViewController:alert animated:YES completion:NULL];
  11. NSLog(@"confirm message:%@", message);
  12. }
  • prompt 输入框函数:
  1. - (void)webView:(WKWebView *)webView runJavaScriptTextInputPanelWithPrompt:(NSString *)prompt defaultText:(nullable NSString *)defaultText initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(NSString * __nullable result))completionHandler {
  2. UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"输入框" message:@"调用输入框" preferredStyle:UIAlertControllerStyleAlert];
  3. [alert addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
  4. textField.textColor = [UIColor blackColor];
  5. }];
  6. [alert addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  7. completionHandler([[alert.textFields lastObject] text]);
  8. }]];
  9. [self presentViewController:alert animated:YES completion:NULL];
  10. }

4.WKNavigationDelegate

代理方法在第三节有提到,这里在重复一下吧

  • 用来追踪加载过程的方法:
  1. //开始加载时调用
  2. -(void)webView:(WKWebView *)webView didStartProvisionalNavigation:(WKNavigation *)navigation{
  3. }
  4. //当内容开始返回时调用
  5. -(void)webView:(WKWebView *)webView didCommitNavigation:(WKNavigation *)navigation{
  6. }
  7. //页面加载完成之后调用
  8. -(void)webView:(WKWebView *)webView didFinishNavigation:(WKNavigation *)navigation{
  9. }
  10. // 页面加载失败时调用
  11. - (void)webView:(WKWebView *)webView didFailProvisionalNavigation:(WKNavigation *)navigation
  12. {
  13. }
  • 页面跳转的代理方法:
  1. // 接收到服务器跳转请求之后调用
  2. - (void)webView:(WKWebView *)webView didReceiveServerRedirectForProvisionalNavigation:(WKNavigation *)navigation;
  3. // 在收到响应后,决定是否跳转
  4. - (void)webView:(WKWebView *)webView decidePolicyForNavigationResponse:(WKNavigationResponse *)navigationResponse decisionHandler:(void (^)(WKNavigationResponsePolicy))decisionHandler;
  5. // 在发送请求之前,决定是否跳转
  6. - (void)webView:(WKWebView *)webView decidePolicyForNavigationAction:(WKNavigationAction *)navigationAction decisionHandler:(void (^)(WKNavigationActionPolicy))decisionHandler;

以上的方法根据实际需求操作即可。





声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/109523
推荐阅读
相关标签
  

闽ICP备14008679号