Skip to content

Commit

Permalink
Merge pull request #107 from robsonfingo/master
Browse files Browse the repository at this point in the history
Fix crash on xcode 10.2
  • Loading branch information
pichillilorenzo authored Jun 1, 2019
2 parents c51497b + 6af7d12 commit 74bce61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ios/Classes/InAppBrowserWebViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
Expand Down

0 comments on commit 74bce61

Please sign in to comment.