We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 330ce4e commit 4ba09c7Copy full SHA for 4ba09c7
README.md
@@ -13,8 +13,8 @@ BASIC EXAMPLE
13
override func viewDidLoad() {
14
super.viewDidLoad()
15
view.backgroundColor = .red
16
- let vc = WebViewLibrary(link: "https://your-url")
17
- self.navigationController?.present(vc, animated: true)
+ let viewController = WebViewLibrary(link: "https://your-url")
+ self.navigationController?.present(viewController, animated: true)
18
}
19
20
@@ -23,7 +23,7 @@ Futher Customization
23
---------
24
If you do not need the link textfield to show, you can do this:
25
```swift
26
- let vc = TestViewController(link: "https://fb.com", isLinkTextfieldHidden: true)
+ let viewController = WebViewLibrary(link: "https://fb.com", isLinkTextfieldHidden: true)
27
```
28
29
Setup Instruction
0 commit comments