使标签可复制
我正在开发一个适用于 iOS 的 Web 应用程序,它有一个 Label
,它将向用户显示应复制以供进一步使用的结果,但我如何制作 Label
内容可复制吗?
I'm developing a WebApp for iOS which has a Label
that will show a result for the user that should be copied for further use, but how I can make the Label
content copyable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在标签附近添加一个复制按钮,当用户点击它时,标签的值存储在 var 中,并且可以插入到应用程序的另一点...
或者,如果您想要剪贴板中的标签文本,你可以用这个:
http://mobileorchard. com/new-in-iphone-30-tutorial-series-part-3-copy-paste-with-uipasteboard/
你可以通过 mylabeloutlet.text 从标签中获取文本并将其存储在粘贴板中,所以用户可以将其插入到另一个文本字段/输入字段中
u could add a copy button near the label, when the user tapps it, the value of the label is stored in a var and could be inserted at another point of the application...
or, if u want the labeltext in the clipboard, u could use this:
http://mobileorchard.com/new-in-iphone-30-tutorial-series-part-3-copy-paste-with-uipasteboard/
u can get the text from the label via mylabeloutlet.text and store it in the pastboard, so the user can insert it into another textfield/inputfield