Listen

Description

The code for loading the HTML page into the About screen is changed to:

if let htmlFile = NSBundle.mainBundle().pathForResource("BullsEye", ofType: "html") {
if let htmlData = NSData(contentsOfFile: htmlFile) {
let baseURL = NSURL(fileURLWithPath: NSBundle.mainBundle().bundlePath)
webView.loadData(htmlData, MIMEType: "text/html", textEncodingName: "UTF-8", baseURL: baseURL)
}
}