Search code examples
swift3webviewuiwebview

WebView dismissed if choose file and select photo Library


I'm working on a project where I'm using webView and on site in webView have form where i can add file,

enter image description here

after need select what use, i select Photo library,

enter image description here

after controller will dismissed.

In Controller i use

  webView.loadRequest(NSURLRequest(URL: NSURL(string: ln)!))

Solution

    1. Set Delegate to webview.

      webView.delegate = self

    2. Then after call delegate method of webview.

      func webViewDidFinishLoad(_ webView: UIWebView)

      Enter your code above method of choose file and select photo Library.