我正在尝试将UIBarButton
(右侧)作为粘贴按钮。用户将已经将文本复制到上一个UIPasteBoard
的{{1}}中。当点击ViewController
(粘贴)时,该文本应显示在用户所关注的网站上的文本字段中。例如,如果用户点击UIBarButton
,然后按Paste,则应显示文本。
我只找到了将Google search box
与字符串一起粘贴到应用程序内的UIPasteBoard
,UITextFields
而不是UITextViews
中的解决方案。
WKWebViews
尝试使用@IBOutlet var webView: WKWebView!
override func viewDidLoad() {
super.viewDidLoad()
navigationItem.rightBarButtonItem = UIBarButtonItem(title: "Paste", style: .plain, target: self, action: #selector(pasteText))
let myURL = URL(string:"https://www.google.com")
let myRequest = URLRequest(url: myURL!)
webView.load(myRequest)
}
@objc func pasteText() {
// Code?
}
将文本粘贴到网站(UIPasteBoard
)的文本字段中。