Skip to content

Instantly share code, notes, and snippets.

View stdrc's full-sized avatar
🌘

stdrc stdrc

🌘
View GitHub Profile
@stdrc
stdrc / gist:017c6c2a714483a07f75
Last active August 29, 2015 14:25
UITextField 或 UITextView 中禁用部分指定操作(如复制、剪切)
// Create a subclass of `UITextField` or `UITextView`,
// and override the `canPerformAction:withSender:` method like following:
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender
{
if (action == @selector(copy:))
return NO;
return [super canPerformAction:action withSender:sender];
}