下面简单介绍下如何把HTML5编写的页面编译成iOS应用,以及如何让页面与Swift代码进行交互。(本文代码已升级至Swift3)
(1)下面是使用UIWebView的样例:
(2)下面是使用WKWebView的样例:
3,swift代码与页面js互相调用(使用WKWebView)
下面通过一个简单样例演示js与原生代码如何进行相互调用以及参数传递。当点击一个商品图片时,会弹出一个iOS的消息框。当用户选择确定后,又会调用页面js方法,把商品添加到购物车里面。
28
18
源码下载:
虽然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
28
|
import
UIKit
WebKit
class
ViewController
:
UIViewController
{
override
func
viewDidLoad() {
super
.viewDidLoad()
let
path =
Bundle
.main.path(forResource:
"index"
,ofType:
".html"
inDirectory:
"HTML5"
)
url =
URL
(fileURLWithPath:path!)
request =
URLRequest
(url:url)
//将浏览器视图全屏(在内容区域全屏,不占用顶端时间条)
frame =
CGRect
(x:0,y:20,width:
UIScreen
.main.bounds.width,
height:
.main.bounds.height)
theWebView =
UIWebView
(frame:frame)
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
26
27
28
|
import
UIKit
import
WebKit
class
ViewController
:
UIViewController
{
override
func
viewDidLoad() {
super
.viewDidLoad()
let
path =
Bundle
.main.path(forResource:
"index"
".html"
inDirectory:
"HTML5"
)
url =
URL
(fileURLWithPath:path!)
request =
URLRequest
(url:url)
frame =
CGRect
UIScreen
height:
.main.bounds.height)
theWebView:
WKWebView
=
(frame:frame)
theWebView.scrollView.bounces =
false
//加载页面
theWebView.load(request)
self
.view.addSubview(theWebView)
}
didReceiveMemoryWarning() {
.didReceiveMemoryWarning()
}
}
|
3,swift代码与页面js互相调用(使用WKWebView)
下面通过一个简单样例演示js与原生代码如何进行相互调用以及参数传递。当点击一个商品图片时,会弹出一个iOS的消息框。当用户选择确定后,又会调用页面js方法,把商品添加到购物车里面。
--- Swift代码 ViewController.swift ---
UIKit
WKScriptMessageHandler
var
?
viewDidLoad() {
.viewDidLoad()
)
(fileURLWithPath:path!)
(url:url)
//创建供js调用的接口
theConfiguration =
WKWebViewConfiguration
()
theConfiguration.userContentController.add(
"interOp"
)
frame =
CGRect
UIScreen
.main.bounds.height)
theWebView =
(frame:frame,configuration: theConfiguration)
theWebView!.scrollView.bounces =
false
//加载页面
theWebView!.load(request)
.view.addSubview(theWebView!)
}
//响应处理js那边的调用
userContentController(_ userContentController:
WKUserContentController
didReceive message:
WKScriptMessage
) {
print
(message.body)
sentData = message.body
as
!
Dictionary
<
String
>
//判断是确认添加购物车操作
if
(sentData[
"method"
] ==
"addToCarCheck"
){
itemName = sentData[
"name"
]!
alertController =
UIAlertController
(title:
"系统提示"
message:
"确定把\(itemName)添加到购物车吗?"
preferredStyle: .alert)
cancelAction =
UIAlertAction
"取消"
nil
)
okAction =
"确定"
default
action
in
(
"点击了确定"
)
.theWebView!.evaluateJavaScript(
"addToCar('\(itemName)')"
completionHandler:
)
})
alertController.addAction(cancelAction)
alertController.addAction(okAction)
.present(alertController,animated:
true
)
}
}
didReceiveMemoryWarning() {
.didReceiveMemoryWarning()
}
}
|
<script>
$(
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(2015-09-22 Swift2)
hangge_876.zip(2016-10-15 Swift3 最新版)
原文出自: www.hangge.com 转载请保留原文链接: http://www.hangge.com/blog/cache/detail_876.html 原文链接:https://www.f2er.com/swift/321579.html