SwiftWebVC icon indicating copy to clipboard operation
SwiftWebVC copied to clipboard

Done button not appearing

Open fparkar opened this issue 7 years ago • 1 comments

I am using below code,

let webVC = SwiftWebVC(urlString: "http://google.com") self.navigationController?.pushViewController(webVC, animated: true)

But I don't see Done button on top.

This is the most important part of this lib and its missing.

** You have this functionality in Modal.

fparkar avatar Feb 21 '18 09:02 fparkar

To present the WebVC modally use the following:

let webVC = SwiftModalWebVC(urlString: "http://google.com")
self.present(webVC, animated: true, completion: nil)

and the "Done" button will be there. The pushed WebVC does not have a done button.

lpbas avatar Feb 26 '18 15:02 lpbas