【移动应用开发技术】ios中wkwebview离线化加载h5资源的示例分析_第1页
【移动应用开发技术】ios中wkwebview离线化加载h5资源的示例分析_第2页
【移动应用开发技术】ios中wkwebview离线化加载h5资源的示例分析_第3页
【移动应用开发技术】ios中wkwebview离线化加载h5资源的示例分析_第4页
【移动应用开发技术】ios中wkwebview离线化加载h5资源的示例分析_第5页
已阅读5页,还剩4页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

【移动应用开发技术】ios中wkwebview离线化加载h5资源的示例分析

@interface

ViewController

()

@end

@implementation

ViewController

-

(void)viewDidLoad

{

[super

viewDidLoad];

//

区别于uiwebview

wkwebview使用如下方法拦截

Class

cls

=

NSClassFromString(@"WKBrowsingContextController");

SEL

sel

=

NSSelectorFromString(@"registerSchemeForCustomProtocol:");

if

([(id)cls

respondsToSelector:sel])

{

[(id)cls

performSelector:sel

withObject:@"http"];

[(id)cls

performSelector:sel

withObject:@"https"];

}

}#

注册NSURLProtocol拦截

-

(IBAction)regist:(id)sender

{

[NSURLProtocol

registerClass:[FilteredProtocol

class]];

}#

注销NSURLProtocol拦截

-

(IBAction)unregist:(id)sender

{

[NSURLProtocol

unregisterClass:[FilteredProtocol

class]];

}-

(void)downloadZip

{

NSDictionary

*_headers;

NSURLSession

*_session

=

[self

sessionWithHeaders:_headers];

NSURL

*url

=

[NSURL

URLWithString:

@"25:3238/dist.zip"];

NSMutableURLRequest

*request

=

[NSMutableURLRequest

requestWithURL:url];

//

初始化cachepath

NSString

*cachePath

=

[NSSearchPathForDirectoriesInDomains(NSCachesDirectory,

NSUserDomainMask,

YES)

lastObject];

NSFileManager

*fm

=

[NSFileManager

defaultManager];

//

删除之前已有的文件

[fm

removeItemAtPath:[cachePath

stringByAppendingPathComponent:@"dist.zip"]

error:nil];

NSURLSessionDownloadTask

*downloadTask=[_session

downloadTaskWithRequest:request

completionHandler:^(NSURL

*location,

NSURLResponse

*response,

NSError

*error)

{

if

(!error)

{

NSError

*saveError;

NSURL

*saveUrl

=

[NSURL

fileURLWithPath:

[cachePath

stringByAppendingPathComponent:@"dist.zip"]];

//

location是下载后的临时保存路径,需要将它移动到需要保存的位置

[[NSFileManager

defaultManager]

copyItemAtURL:location

toURL:saveUrl

error:&saveError];

if

(!saveError)

{

NSLog(@"task

ok");

if([SSZipArchive

unzipFileAtPath:

[cachePath

stringByAppendingPathComponent:@"dist.zip"]

toDestination:cachePath])

{

NSLog(@"unzip

ok");//

解压成功

}

else

{

NSLog(@"unzip

err");//

解压失败

}

}

else

{

NSLog(@"task

err");

}

}

else

{

NSLog(@"error

is

:%@",

error.localizedDescription);

}

}];

[downloadTask

resume];

}-

(void)migrateDistToTempory

{

NSFileManager

*fm

=

[NSFileManager

defaultManager];

NSString

*cacheFilePath

=

[[NSSearchPathForDirectoriesInDomains(NSCachesDirectory,

NSUserDomainMask,

YES)

lastObject]

stringByAppendingPathComponent:@"dist"];

NSString

*tmpFilePath

=

[NSTemporaryDirectory()

stringByAppendingPathComponent:@"dist"];

//

先删除tempory已有的dist资源

[fm

removeItemAtPath:tmpFilePath

error:nil];

NSError

*saveError;

//

从caches拷贝dist到tempory临时文件夹

[[NSFileManager

defaultManager]

copyItemAtURL:[NSURL

fileURLWithPath:cacheFilePath]

toURL:[NSURL

fileURLWithPath:tmpFilePath]

error:&saveError];

NSLog(@"Migrate

dist

to

tempory

ok");

}//

//

ProtocolCustom.m

//

proxy-browser

//

//

Created

by

melo的微博

on

2018/4/8.

//

Copyright

©

2018年

com.

All

rights

reserved.

//

#import

<objc/runtime.h>

#import

<Foundation/Foundation.h>

#import

<MobileCoreServices/MobileCoreServices.h>

static

NSString*const

matchingPrefix

=

@"25:3233/static/";

static

NSString*const

regPrefix

=

@"25:3233";

static

NSString*const

FilteredKey

=

@"FilteredKey";

@interface

FilteredProtocol

:

NSURLProtocol

@property

(nonatomic,

strong)

NSMutableData

*responseData;

@property

(nonatomic,

strong)

NSURLConnection

*connection;

@end

@implementation

FilteredProtocol

+

(BOOL)canInitWithRequest:(NSURLRequest

*)request

{

return

[NSURLProtocol

propertyForKey:FilteredKey

inRequest:request]==

nil;

}

+

(NSURLRequest

*)canonicalRequestForRequest:(NSURLRequest

*)request

{

NSLog(@"Got

it

request.URL.absoluteString

=

%@",request.URL.absoluteString);

NSMutableURLRequest

*mutableReqeust

=

[request

mutableCopy];

//截取重定向

if

([request.URL.absoluteString

hasPrefix:matchingPrefix])

{

NSURL*

proxyURL

=

[NSURL

URLWithString:[FilteredProtocol

generateProxyPath:

request.URL.absoluteString]];

NSLog(@"Proxy

to

=

%@",

proxyURL);

mutableReqeust

=

[NSMutableURLRequest

requestWithURL:

proxyURL];

}

return

mutableReqeust;

}

+

(BOOL)requestIsCacheEquivalent:(NSURLRequest

*)a

toRequest:(NSURLRequest

*)b

{

return

[super

requestIsCacheEquivalent:a

toRequest:b];

}

#

如果[index.html]结尾

=>

就直接[Load]本地[index.html]

-

(void)startLoading

{

NSMutableURLRequest

*mutableReqeust

=

[[self

request]

mutableCopy];

//

标示改request已经处理过了,防止无限循环

[NSURLProtocol

setProperty:@YES

forKey:FilteredKey

inRequest:mutableReqeust];

if

([self.request.URL.absoluteString

hasSuffix:@"index.html"])

{

NSURL

*url

=

self.request.URL;

NSString

*path

=

[FilteredProtocol

generateDateReadPath:

self.request.URL.absoluteString];

NSLog(@"Read

data

from

path

=

%@",

path);

NSFileHandle

*file

=

[NSFileHandle

fileHandleForReadingAtPath:path];

NSData

*data

=

[file

readDataToEndOfFile];

NSLog(@"Got

data

=

%@",

data);

[file

closeFile];

//3.拼接响应Response

NSInteger

dataLength

=

data.length;

NSString

*mimeType

=

[self

getMIMETypeWithCAPIAtFilePath:path];

NSString

*httpVersion

=

@"HTTP/1.1";

NSHTTPURLResponse

*response

=

nil;

if

(dataLength

>

0)

{

response

=

[self

jointResponseWithData:data

dataLength:dataLength

mimeType:mimeType

requestUrl:url

statusCode:200

httpVersion:httpVersion];

}

else

{

response

=

[self

jointResponseWithData:[@"404"

dataUsingEncoding:NSUTF8StringEncoding]

dataLength:3

mimeType:mimeType

requestUrl:url

statusCode:404

httpVersion:httpVersion];

}

//4.响应

[[self

client]

URLProtocol:self

didReceiveResponse:response

cacheStoragePolicy:NSURLCacheStorageNotAllowed];

[[self

client]

URLProtocol:self

didLoadData:data];

[[self

client]

URLProtocolDidFinishLoading:self];

}

else

{

self.connection

=

[NSURLConnection

connectionWithRequest:mutableReqeust

delegate:self];

}

}

-

(void)stopLoading

{

if

(self.connection

!=

nil)

{

[self.connection

cancel];

self.connection

=

nil;

}

}

-

(NSString

*)getMIMETypeWithCAPIAtFilePath:(NSString

*)path

{

if

(![[[NSFileManager

alloc]

init]

fileExistsAtPath:path])

{

return

nil;

}

CFStringRef

UTI

=

UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension,

(__bridge

CFStringRef)[path

pathExtension],

NULL);

CFStringRef

MIMEType

=

UTTypeCopyPreferredTagWithClass

(UTI,

kUTTagClassMIMEType);

CFRelease(UTI);

if

(!MIMEType)

{

return

@"application/octet-stream";

}

return

(__bridge

NSString

*)(MIMEType);

}

#pragma

mark

-

拼接响应Response

-

(NSHTTPURLResponse

*)jointResponseWithData:(NSData

*)data

dataLength:(NSInteger)dataLength

mimeType:(NSString

*)mimeType

requestUrl:(NSURL

*)requestUrl

statusCode:(NSInteger)statusCode

httpVersion:(NSString

*)httpVersion

{

NSDictionary

*dict

=

@{@"Content-type":mimeType,

@"Content-length":[NSString

stringWithFormat:@"%ld",dataLength]};

NSHTTPURLResponse

*response

=

[[NSHTTPURLResponse

alloc]

initWithURL:requestUrl

statusCode:statusCode

HTTPVersion:httpVersion

headerFields:dict];

return

response;

}

#pragma

mark-

NSURLConnectionDelegate

-

(void)connection:(NSURLConnection

*)connection

didFailWithError:(NSError

*)error

{

[self.client

URLProtocol:self

didFailWithError:error];

}

#pragma

mark

-

NSURLConnectionDataDelegate

-

(void)connection:(NSURLConnection

*)connection

didReceiveResponse:(NSURLResponse

*)response

{

self.responseData

=

[[NSMutableData

alloc]

init];

[self.client

URLProtocol:self

didReceiveResponse:response

cacheStoragePolicy:NSURLCacheStorageNotAllowed];

}

-

(void)connection:(NSURLConnection

*)connection

didReceiveData:(NSData

*)data

{

[

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论