Commit 74bce61d authored by Lorenzo Pichilli's avatar Lorenzo Pichilli Committed by GitHub

Merge pull request #107 from robsonfingo/master

Fix crash on xcode 10.2
parents c51497b0 6af7d124
......@@ -63,9 +63,9 @@ typealias NewerClosureType = @convention(c) (Any, Selector, UnsafeRawPointer, B
//}
class InAppWebView_IBWrapper: InAppWebView {
required convenience init(coder: NSCoder) {
required init(coder: NSCoder) {
let config = WKWebViewConfiguration()
self.init(frame: .zero, configuration: config, IABController: nil, IAWController: nil)
super.init(frame: .zero, configuration: config, IABController: nil, IAWController: nil)
self.translatesAutoresizingMaskIntoConstraints = false
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment