File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ BASIC EXAMPLE
13
13
override func viewDidLoad () {
14
14
super .viewDidLoad ()
15
15
view.backgroundColor = .red
16
- let vc = WebViewLibrary (link : " https://your-url" )
17
- self .navigationController ? .present (vc , animated : true )
16
+ let viewController = WebViewLibrary (link : " https://your-url" )
17
+ self .navigationController ? .present (viewController , animated : true )
18
18
}
19
19
}
20
20
@@ -23,7 +23,7 @@ Futher Customization
23
23
---------
24
24
If you do not need the link textfield to show, you can do this:
25
25
``` swift
26
- let vc = TestViewController (link : " https://fb.com" , isLinkTextfieldHidden : true )
26
+ let viewController = WebViewLibrary (link : " https://fb.com" , isLinkTextfieldHidden : true )
27
27
```
28
28
29
29
Setup Instruction
You can’t perform that action at this time.
0 commit comments