下面简单介绍下如何把HTML5编写的页面编译成iOS应用,以及如何让页面与Swift代码进行交互。
(1)下面是使用UIWebView的样例:
(2)下面是使用WKWebView的样例:
3,swift代码与页面js互相调用(使用WKWebView)
下面通过一个简单样例演示js与原生代码如何进行相互调用以及参数传递。当点击一个商品图片时,会弹出一个iOS的消息框。当用户选择确定后,又会调用页面js方法,把商品添加到购物车里面。
25
18
源码下载: HTML5.zip
虽然WKWebView不支持缓存和NSURLProtocol 拦截了,但其加载速度比UIWebView提升差不多一倍的,内存使用上面反而还少了一半。同时也增加了加载进度条属性,而不像原来要使用假的进度条。原生代码与页面js互相调用也更加方便。
所有在缓存要求不高的情况下,建议使用WKWebView,用户体验也会更好。
2,使用UIWebView和WKWebView加载html页面
我们可以整个应用都使用HTML5来编写,或者只有某几个页面使用HTML。
(注意:添加文件的时候有两种方式:“Create groups”和“Create folder references”。如果你的html页面有层次结构,比如css,js,图片都放在各自的子文件夹中。要选择后面那个方式“Create folder references”。如果选第一个,虽然在Xcode组织树看来都是好的,但实际所有加入到项目的文件都会在mainBundle根路径下,这样文件引用就会出问题。)
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
|
import
UIKit
import
WebKit
class
ViewController
:
UIViewController
{
override
func
viewDidLoad() {
super
.viewDidLoad()
let
path =
NSBundle
.mainBundle().pathForResource(
"index"
,ofType:
".html"
inDirectory:
"HTML5"
)
url =
NSURL
(fileURLWithPath:path!)
request =
NSURLRequest
(
URL
:url)
//将浏览器视图全屏(在内容区域全屏,不占用顶端时间条)
theWebView:
UIWebView
=
(frame:
UIScreen
.mainScreen().applicationFrame)
//let theWebView:WKWebView = WKWebView(frame:UIScreen.mainScreen().applicationFrame)
theWebView.scrollView.bounces =
false
//加载页面
theWebView.loadRequest(request)
self
.view.addSubview(theWebView)
}
didReceiveMemoryWarning() {
.didReceiveMemoryWarning()
}
}
|
(2)下面是使用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
|
import
UIKit
WebKit
class
ViewController
:
UIViewController
{
var
theWebView:
WKWebView
?
override
func
viewDidLoad() {
super
.viewDidLoad()
.viewDidLoad()
let
path =
NSBundle
.mainBundle().pathForResource(
"index"
ofType:
"html"
"HTML5"
)
url =
NSURL
(fileURLWithPath: path!)
request =
NSURLRequest
(
URL
: url)
theWebView =
(frame:
UIScreen
.mainScreen().bounds)
theWebView!.loadRequest(request)
self
.view.addSubview(theWebView!)
}
didReceiveMemoryWarning() {
.didReceiveMemoryWarning()
}
}
|
3,swift代码与页面js互相调用(使用WKWebView)
下面通过一个简单样例演示js与原生代码如何进行相互调用以及参数传递。当点击一个商品图片时,会弹出一个iOS的消息框。当用户选择确定后,又会调用页面js方法,把商品添加到购物车里面。
--- Swift代码 ViewController.swift ---
import
UIKit
WKScriptMessageHandler
)
url =
NSURL
(fileURLWithPath: path!)
: url)
//创建供js调用的接口
theConfiguration =
WKWebViewConfiguration
()
theConfiguration.userContentController.addScriptMessageHandler(
name:
"interOp"
)
(frame:
.view.frame,
configuration: theConfiguration)
theWebView!.loadRequest(request)
.view.addSubview(theWebView!)
}
//响应处理js那边的调用
userContentController(userContentController:
WKUserContentController
didReceiveScriptMessage message:
WKScriptMessage
) {
sentData = message.body
as
!
NSDictionary
//判断是确认添加购物车操作
if
(sentData[
"method"
]
?
String
==
"addToCarCheck"
){
itemName = sentData[
"name"
String
alertController =
UIAlertController
(title:
"系统提示"
message:
"确定把\(itemName)添加到购物车吗?"
preferredStyle:
UIAlertControllerStyle
.
Alert
)
cancelAction =
UIAlertAction
"取消"
UIAlertActionStyle
Cancel
handler:
nil
)
okAction =
"确定"
UIAlertActionStyle
Default
handler: {
action
in
print
(
"点击了确定"
)
.theWebView!.evaluateJavaScript(
"addToCar('\(itemName)')"
completionHandler:
)
})
alertController.addAction(cancelAction)
alertController.addAction(okAction)
.presentViewController(alertController,animated:
true
)
}
}
didReceiveMemoryWarning() {
.didReceiveMemoryWarning()
}
}
|
<script>
@H_502_847@$(
function
() {
//点击商品添加到购物车
$(
".goodsItem"
).click(
() {
var
itemName = $(
this
).children(
"img"
)[0].alt;
message = {
"method"
:
"addToCarCheck"
"name"
:itemName};
window.webkit.messageHandlers.interOp.postMessage(message);
});
});
//添加到购物车
addToCar(itemName){
//这里只是简单的给数量+1,用来演示
num = parseInt($(
"#cartNums"
).text());
).text(num+1);
}
</script>
|
源码下载: HTML5.zip
原文出自: www.hangge.com 转载请保留原文链接: http://www.hangge.com/blog/cache/detail_876.html 原文链接:https://www.f2er.com/swift/324454.html