我正在尝试使用Swift中的UIWebView加载HTML文件。
我想要做的是加载一个位于两个子目录中的HTML文件。
let url = NSBundle.mainBundle().URLForResource("test", withExtension:"html",subdirectory: "GameFolder", subdirectory: "ActualGame")
webView.loadRequest(NSURLRequest(URL: url!))
有什么想法吗?