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.
如标题所述。如何在 or 中禁止复制(Command + C)和粘贴(Command + V)NSTextField操作NSSecureTextField?
NSTextField
NSSecureTextField
创建 UITextField 的子类。在该子类中,实现
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender { if (sel_isEqual(action, @selector(copy:))) { return NO; } return [super canPerformAction:action withSender:sender]; }