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.
我的应用程序中有一个 UITextView,有什么方法可以检测用户是否选择了它并复制了里面的文本?
或者
无论如何我可以阻止复制按钮出现吗?
如果您想禁用复制、粘贴功能,您应该继承 UITextView 并将此代码添加到您的新类中:
- (BOOL)canBecomeFirstResponder { return NO; }
如何检测粘贴板事件,例如复制,粘贴看这里..
如何在 UITextView 中禁用复制、剪切、选择、全选
或在这里..
如何以编程方式从 UITextField 禁用复制粘贴选项