我一直在尝试使用Swift学习iOS开发,但我一直试图加载一个简单的网页一周左右。我看了四周,下面的代码似乎适用于其他代码,但是当我运行iOS模拟器时,没有显示任何内容,只有UIWebView
的背景。
class ViewController: UIViewController {
@IBOutlet weak var myWebView: UIWebView!
let myURL = NSURL(fileURLWithPath: "https://www.google.com")
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
myWebView.loadRequest(NSURLRequest(URL: myURL!))
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
答案 0 :(得分:4)
你应该使用这个
let myURL = NSURL(string: "https://www.google.com")
不是fileURLWithPath:
。
问题在于,通过使用fileURLWithPath:
,Web视图在文件系统中搜索名为"https://www.google.com"
的文件,但没有找到,因为没有这样的文件。