We're sunsetting PodQuest on 2025-07-28. Thank you for your support!
Export Podcast Subscriptions
cover of episode 242. The iOS Apprentice Getting Started- 09

242. The iOS Apprentice Getting Started- 09

2015/12/17
logo of podcast iOSDevLog

iOSDevLog

Shownotes Transcript

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) }}