Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
背景:我有一个 HomeKit API 的自定义警报部分。我想让用户粘贴请求的代码,而不是手动输入。
只要缓冲区中有文本,就可以通过点击文本字段来粘贴它。如何将自定义文本(从我的应用程序)添加到“此”缓冲区,以便出现“粘贴”选项?
您可以使用以下代码填充 iPhone 剪贴板。将此代码放在代码中的合适位置。
UIPasteboard *clipboard = [UIPasteboard generalPasteboard]; clipboard.string = @"<Assign Some value>";