前言

鉴于LL同志对笔者说:“能不能写个OC版本的WKWebView的使用教程?”,还积极打赏了30RMB,笔者又怎么好意思拒绝呢,于是才有了下文。

所有看到本篇文章的同志们,应该要感谢LL同志,更要向LL同志学习,积极打赏!

WKWebView

看看WKWebView的头文件声明:

 

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

 

// webview 配置,具体看下面

@property (nonatomic, readonly, copy) WKWebViewConfiguration *configuration;

 

// 导航代理 

@property (nullable, nonatomic, weak) id <WKNavigationDelegate>navigationDelegate;

 

// 用户交互代理

@property (nullable, nonatomic, weak) id <WKUIDelegate> UIDelegate;

 

// 页面前进、后退列表

@property (nonatomic, readonly, strong) WKBackForwardList *backForwardList;

 

// 默认构造器

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

 

// 已不再使用

- (instancetype)initWithCoder:(NSCoder *)coder NS_UNAVAILABLE;

 

// 与UIWebView一样的加载请求API

- (nullable WKNavigation *)loadRequest:(NSURLRequest *)request;

 

// 加载URL

- (nullable WKNavigation *)loadFileURL:(NSURL *)URL allowingReadAccessToURL:(NSURL *)readAccessURL NS_AVAILABLE(10_11, 9_0);

 

// 直接加载HTML

- (nullable WKNavigation *)loadHTMLString:(NSString *)string baseURL:(nullable NSURL *)baseURL;

 

// 直接加载data

- (nullable WKNavigation *)loadData:(NSData *)data MIMEType:(NSString*)MIMEType characterEncodingName:(NSString *)characterEncodingName baseURL:(NSURL *)baseURL NS_AVAILABLE(10_11, 9_0);

 

// 前进或者后退到某一页面

- (nullable WKNavigation *)goToBackForwardListItem:(WKBackForwardListItem*)item;

 

// 页面的标题,这昆支持KVO的

@property (nullable, nonatomic, readonly, copy) NSString *title;

 

// 当前请求的URL,它是支持KVO的

@property (nullable, nonatomic, readonly, copy) NSURL *URL;

 

// 标识当前是否正在加载内容中,它是支持KVO的

@property (nonatomic, readonly, getter=isLoading) BOOL loading;

 

// 当前加载的进度,范围为[0, 1]

@property (nonatomic, readonly) double estimatedProgress;

 

// 标识页面中的所有资源是否通过安全加密连接来加载,它是支持KVO的

@property (nonatomic, readonly) BOOL hasOnlySecureContent;

 

// 当前导航的证书链,支持KVO

@property (nonatomic, readonly, copy) NSArray *certificateChainNS_AVAILABLE(10_11, 9_0);

 

// 是否可以招待goback操作,它是支持KVO的

@property (nonatomic, readonly) BOOL canGoBack;

 

// 是否可以执行gofarward操作,支持KVO

@property (nonatomic, readonly) BOOL canGoForward;

 

// 返回上一页面,如果不能返回,则什么也不干

- (nullable WKNavigation *)goBack;

 

// 进入下一页面,如果不能前进,则什么也不干

- (nullable WKNavigation *)goForward;

 

// 重新载入页面

- (nullable WKNavigation *)reload;

 

// 重新从原始URL载入

- (nullable WKNavigation *)reloadFromOrigin;

 

// 停止加载数据

- (void)stopLoading;

 

// 执行JS代码

- (void)evaluateJavaScript:(NSString *)javaScriptString completionHandler:(void (^ __nullable)(__nullable id, NSError * __nullable error))completionHandler;

 

// 标识是否支持左、右swipe手势是否可以前进、后退

@property (nonatomic) BOOL allowsBackForwardNavigationGestures;

 

// 自定义user agent,如果没有则为nil

@property (nullable, nonatomic, copy) NSString *customUserAgentNS_AVAILABLE(10_11, 9_0);

 

// 在iOS上默认为NO,标识不允许链接预览

@property (nonatomic) BOOL allowsLinkPreview NS_AVAILABLE(10_11, 9_0);

 

#if TARGET_OS_IPHONE

/*! @abstract The scroll view associated with the web view.

*/

@property (nonatomic, readonly, strong) UIScrollView *scrollView;

#endif

 

#if !TARGET_OS_IPHONE

// 标识是否支持放大手势,默认为NO

@property (nonatomic) BOOL allowsMagnification;

 

// 放大因子,默认为1

@property (nonatomic) CGFloat magnification;

 

// 根据设置的缩放因子来缩放页面,并居中显示结果在指定的点

- (void)setMagnification:(CGFloat)magnification centeredAtPoint:(CGPoint)point;

 

#endif

 

WKWebViewConfiguration配置

 

1

2

3

 

WKWebViewConfiguration *config = [[WKWebViewConfiguration alloc] init];

 

WKPreferences偏好设置

目前在iOS平台上偏好设置只有三个属性可以设置,如下:

 

1

2

3

4

5

6

7

8

9

10

 

// 设置偏好设置

config.preferences = [[WKPreferences alloc] init];

// 默认为0

config.preferences.minimumFontSize = 10;

// 默认认为YES

config.preferences.javaScriptEnabled = YES;

// 在iOS上默认为NO,表示不能自动通过窗口打开

config.preferences.javaScriptCanOpenWindowsAutomatically = NO;

 

WKProcessPool内容处理池

WKProcessPool并没有公开任何的属性或者方法,不需要配置:

 

1

2

3

 

config.processPool = [[WKProcessPool alloc] init];

 

其实我们也没有必须去创建它。

 

WKUserContentController内容交互控制器

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

 

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

 

// 只读属性,所有添加的WKUserScript都在这里可以获取到

@property (nonatomic, readonly, copy) NSArray<WKUserScript *> *userScripts;

 

// 注入JS

- (void)addUserScript:(WKUserScript *)userScript;

 

// 移除所有注入的JS

- (void)removeAllUserScripts;

 

// 添加scriptMessageHandler到所有的frames中,则都可以通过

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

// 发送消息

// 比如,JS要调用我们原生的方法,就可以通过这种方式了

- (void)addScriptMessageHandler:(id<WKScriptMessageHandler>)scriptMessageHandler name:(NSString *)name;

 

// 根据name移除所注入的scriptMessageHandler

- (void)removeScriptMessageHandlerForName:(NSString *)name;

 

WKUserScript

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

 

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

 

// JS源代码

@property (nonatomic, readonly, copy) NSString *source;

 

// JS注入时间

@property (nonatomic, readonly) WKUserScriptInjectionTime injectionTime;

 

// 只读属性,表示JS是否应该注入到所有的frames中还是只有main frame.

@property (nonatomic, readonly, getter=isForMainFrameOnly) BOOLforMainFrameOnly;

 

// 初始化方法,用于创建WKUserScript对象

// source:JS源代码

// injectionTime:JS注入的时间

// forMainFrameOnly:是否只注入main frame

- (instancetype)initWithSource:(NSString *)source injectionTime:(WKUserScriptInjectionTime)injectionTime forMainFrameOnly:(BOOL)forMainFrameOnly;

 

WKUserScriptInjectionTime

 

1

2

3

4

5

6

 

typedef NS_ENUM(NSInteger, WKUserScriptInjectionTime) {

    WKUserScriptInjectionTimeAtDocumentStart,

    WKUserScriptInjectionTimeAtDocumentEnd

} NS_ENUM_AVAILABLE(10_10, 8_0);

 

它是一个枚举类型,只有在文档开始加载时注入和加载结束时注入。

WKWebsiteDataStore存储的Web内容

iOS9.0以后才能使用这个类。它是代表webview不同的数据类型,包括cookies、disk、memory caches、WebSQL、IndexedDB数据库和本地存储。

从这里看,要优化Webview好像可以通过它来实现,不过要求iOS9.0以上才能使用。现在6.0都没有抛弃的我,从来不能考虑这种最新的。

 

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

 

// 默认数据存储

+ (WKWebsiteDataStore *)defaultDataStore;

 

// 返回非持久化存储,数据不会写入文件系统

+ (WKWebsiteDataStore *)nonPersistentDataStore;

 

// 已经不可用

- (instancetype)init NS_UNAVAILABLE;

 

// 只读属性,表示是否是持久化存储

@property (nonatomic, readonly, getter=isPersistent) BOOL persistent;

 

// 获取所有web内容的数据存储类型集,比如cookies、disk等

+ (NSSet<NSString *> *)allWebsiteDataTypes;

 

// 获取某些指定数据存储类型的数据

- (void)fetchDataRecordsOfTypes:(NSSet<NSString *> *)dataTypescompletionHandler:(void (^)(NSArray<WKWebsiteDataRecord *>*))completionHandler;

 

// 删除某些指定类型的数据

- (void)removeDataOfTypes:(NSSet<NSString *> *)dataTypes forDataRecords:(NSArray<WKWebsiteDataRecord *> *)dataRecords completionHandler:(void (^)(void))completionHandler;

 

// 删除某些指定类型的数据且修改日期是指定的日期

- (void)removeDataOfTypes:(NSSet<NSString *> *)websiteDataTypes modifiedSince:(NSDate *)date completionHandler:(void (^)(void))completionHandler;

 

所有的dataTypes是下面这些系统所定义的:

 

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

 

WK_EXTERN NSString * const WKWebsiteDataTypeDiskCache NS_AVAILABLE(10_11, 9_0);

 

WK_EXTERN NSString * const WKWebsiteDataTypeMemoryCache NS_AVAILABLE(10_11,9_0);

 

WK_EXTERN NSString * const WKWebsiteDataTypeOfflineWebApplicationCacheNS_AVAILABLE(10_11, 9_0);

 

WK_EXTERN NSString * const WKWebsiteDataTypeCookies NS_AVAILABLE(10_11, 9_0);

 

WK_EXTERN NSString * const WKWebsiteDataTypeSessionStorage NS_AVAILABLE(10_11,9_0);

 

WK_EXTERN NSString * const WKWebsiteDataTypeLocalStorage NS_AVAILABLE(10_11,9_0);

 

WK_EXTERN NSString * const WKWebsiteDataTypeWebSQLDatabases NS_AVAILABLE(10_11,9_0);

 

WK_EXTERN NSString * const WKWebsiteDataTypeIndexedDBDatabasesNS_AVAILABLE(10_11, 9_0);

 

WKWebsiteDataRecord

iOS9.0以后才可用。

website的数据存储记录类型,它只有两个属性:

 

1

2

3

4

5

6

7

 

// 通常是域名

@property (nonatomic, readonly, copy) NSString *displayName;

 

// 存储的数据类型集

@property (nonatomic, readonly, copy) NSSet<NSString *> *dataTypes;

 

WKSelectionGranularity选择粒度

它表示在webview上选择内容的粒度,只有下面这两种类型:

 

1

2

3

4

5

6

 

typedef NS_ENUM(NSInteger, WKSelectionGranularity) {

    WKSelectionGranularityDynamic,

    WKSelectionGranularityCharacter,

} NS_ENUM_AVAILABLE_IOS(8_0);

 

它是用于webview内容交互时选择内容的粒度类型设置。比如说,当使用WKSelectionGranularityDynamic时,而所选择的内容是单个块,这时候granularity可能会是单个字符;当所选择的web内容不限制于某个块时,granularity可能会是单个块。

 

WKNavigationDelegate

 

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

 

@protocol WKNavigationDelegate <NSObject>

 

@optional

 

// 决定导航的动作,通常用于处理跨域的链接能否导航。WebKit对跨域进行了安全检查限制,不允许跨域,因此我们要对不能跨域的链接

// 单独处理。但是,对于Safari是允许跨域的,不用这么处理。

// 这个是决定是否Request

- (void)webView:(WKWebView *)webView decidePolicyForNavigationAction:(WKNavigationAction *)navigationAction decisionHandler:(void (^)(WKNavigationActionPolicy))decisionHandler;

 

// 决定是否接收响应

// 这个是决定是否接收response

// 要获取response,通过WKNavigationResponse对象获取

- (void)webView:(WKWebView *)webView decidePolicyForNavigationResponse:(WKNavigationResponse *)navigationResponse decisionHandler:(void (^)(WKNavigationResponsePolicy))decisionHandler;

 

// 当main frame的导航开始请求时,会调用此方法

- (void)webView:(WKWebView *)webView didStartProvisionalNavigation:(null_unspecified WKNavigation *)navigation;

 

// 当main frame接收到服务重定向时,会回调此方法

- (void)webView:(WKWebView *)webViewdidReceiveServerRedirectForProvisionalNavigation:(null_unspecified WKNavigation*)navigation;

 

// 当main frame开始加载数据失败时,会回调

- (void)webView:(WKWebView *)webView didFailProvisionalNavigation:(null_unspecified WKNavigation *)navigation withError:(NSError *)error;

 

// 当main frame的web内容开始到达时,会回调

- (void)webView:(WKWebView *)webView didCommitNavigation:(null_unspecified WKNavigation *)navigation;

 

// 当main frame导航完成时,会回调

- (void)webView:(WKWebView *)webView didFinishNavigation:(null_unspecified WKNavigation *)navigation;

 

// 当main frame最后下载数据失败时,会回调

- (void)webView:(WKWebView *)webView didFailNavigation:(null_unspecified WKNavigation *)navigation withError:(NSError *)error;

 

// 这与用于授权验证的API,与AFN、UIWebView的授权验证API是一样的

- (void)webView:(WKWebView *)webView didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential *__nullable credential))completionHandler;

 

// 当web content处理完成时,会回调

- (void)webViewWebContentProcessDidTerminate:(WKWebView *)webView NS_AVAILABLE(10_11, 9_0);

 

@end

 

WKNavigationActionPolicy

导航动作决定策略:

 

1

2

3

4

5

6

 

typedef NS_ENUM(NSInteger, WKNavigationActionPolicy) {

    WKNavigationActionPolicyCancel,

    WKNavigationActionPolicyAllow,

} NS_ENUM_AVAILABLE(10_10, 8_0);

 

它是枚举类型,只有Cancel和Allow这两种。设置为Cancel就

分类:

技术点:

相关文章: