I\'ve been playing around with web views in swift this evening, but have run into a bit of an issue.
For some reason I\'m not able to get the webViewDidStartLoad or webV
For other's who might make it here. I had put my delegate methods in a private extension which couldn't be accessed by the delegate caller. Once I changed the extension to internal the delegates started to get called properly.
private extension
internal