if I input link: youtube.com, URLRequest(url: Uri.parse(url))
will not response this url, so I have to input https://www.youtube.com/, but normal user will not input so complicated url link, so is that a way to let InAppWebView confirm this uncompleted url?
A work around:
URLRequest("https://"+url: Uri.parse("https://"+url))
How to add prefix text to input field? ANSWER