WKWebView - WKWebsiteDataStore介绍5

WKWebStestDestaStor对象代表所选网站使用的各种类型的数据。数据类型包括Cookie、磁盘和内存缓存,以及持久数据,如WebSQL、索引数据库和本地存储

defaultDataStore

默认数据存储

nonPersistentDataStore

返回新的非持久性数据存储区

如果Web视图与非持久性数据存储关联,则不向文件系统写入数据。该方法在Web视图中实现了“私人浏览”

persistent

布尔值,数据存储方式是否为持久性

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

httpCookieStore

HTTP cookies的存储方式

@property(nonatomic, readonly) WKHTTPCookieStore *httpCookieStore;


你可能感兴趣的:(WKWebView - WKWebsiteDataStore介绍5)