2,使用loadRequest方法加载本地资源(也可用于加载服务器资源)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@H_404_57@
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
|
import
UIKit
class
ViewController
:
UIViewController
{
@IBOutlet
var
webview:
UIWebView
!
loadtype:
UISegmentedControl
!
override
func
viewDidLoad() {
super
.viewDidLoad()
//默认选中分段控件的第一项
loadtype.selectedSegmentIndex = 0
typeChanged(loadtype)
}
@IBAction
typeChanged(sender:
)
{
let
index = sender.selectedSegmentIndex
print
(index)
switch
index
{
html =
"<h1>欢迎来到:<a href='http://hangge.com'>航歌</a></h1>"
;
webview.loadHTMLString(html,baseURL:
nil
)
1:
//在 UIWebView 中显示 PDF
path =
NSBundle
.mainBundle().pathForResource(
"test1"
,ofType:
"pdf"
)
urlStr =
NSURL
.fileURLWithPath(path!);
(urlStr)
webview.loadRequest(
NSURLRequest
(
URL
:urlStr));
2:
//在 UIWebView 中显示 PDF,但是是通过 loadData 方式加载
)
.fileURLWithPath(path!);
data =
NSData
(contentsOfURL:urlStr);
webview.loadData(data!,
MIMEType
:
"application/pdf"
textEncodingName:
"utf-8"
());
default
:
(
"是不是出错了?"
)
}
}
}
|