UIWebView加载本地html

时间:2016-05-22 14:20:21

标签: swift uiwebview

我这样做的基本应用程序运行正常,除了某些原因我的应用程序就在屏幕之外?有没有人知道为什么会这样?

enter image description here 我的索引页面只是基本的HTML,链接到CSS样式表。 和Xcode:

import UIKit
class ViewController: UIViewController {
    @IBOutlet weak var webView: UIWebView!
    // Load the url into the webview
    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
        let localfilePath = NSBundle.mainBundle().URLForResource("home", withExtension: "html");
        let myRequest = NSURLRequest(URL: localfilePath!);
        webView.loadRequest(myRequest);
    }
    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }
}

1 个答案:

答案 0 :(得分:0)

如果您无法做到或有任何问题,如果您只有UIWebView

,这是一种简单的方法

enter image description here