我在php Laravel中创建了一个网站,我尝试将其放入xCode的mkWebView中。我在互联网上找到了一个简单的方法来做到这一点。
`override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
let url = URL(string:"http://davidwalsh.name/demo/iphone-camera.php")
let myRequest = URLRequest(url: url!)
_ = myWebView?.load(myRequest)
}`
在我的网站html上,我放了一个filechooser:
`<input type="file" accept="image/* capture=camera" name="files1" id="files1" style="display:none" capture="camera" capture camera>`
当我想将图像发送到我的输入时...我只有2个选择:照片库或浏览文件。 我想要相机的选项。但是我没有找到关于这个主题的任何信息。
在Safari浏览器中,它运行良好,但在我的wkWebView中并不是真的。
有人可以帮我解决这个问题吗?