Search

Home > iOSDevLog > 242. The iOS Apprentice Getting Started- 09
Podcast: iOSDevLog
Episode:

242. The iOS Apprentice Getting Started- 09

Category: Technology
Duration: 00:05:42
Publish Date: 2015-12-16 19:09:02
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)
}
}
Total Play: 0