利用Swift编写Uiwebview直接加载网页意思是WebApp的模式。怎么将一个网站网址,利用Swift嵌入苹果APP。运行后,直接进入网站主页。我的是Xcode6.3.1版本在ViewController.swift文件里... 利用Swift编写Uiwebview 直接加载网页
意思是WebApp的模式。
怎么将 一个网站 网址,利用Swift 嵌入苹果APP。运行后,直接进入网站主页。
我的是 Xcode 6.3.1 版本
在 ViewController.swift文件里面编写以下程序
import UIKit
class ViewController: UIViewController {
@IBOutlet var btn: UIButton! = nil //按钮控件
@IBOutlet var web: UIWebView! = nil //网页显示页面控件
@IBAction func btnClick(sender:AnyObject){ //读取网页
web.loadRequest(NSURLRequest(URL: NSURL(string: "http://m.jd.com")!))
}
//我想不需要按钮来控制页面,一打开就可以浏览到页面
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
把加载页面代码 web.loadRequest(NSURLRequest(URL: NSURL(string: "http://m.jd.com")!))
移到viewDidLoad()里边