Skip to content

Instantly share code, notes, and snippets.

@beakr
Created June 16, 2012 14:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beakr/2941446 to your computer and use it in GitHub Desktop.
Save beakr/2941446 to your computer and use it in GitHub Desktop.
Copy to OSX clipboard from text field (Objective-C).
NSPasteboard *pasteBoard = [NSPasteboard generalPasteboard];
[pasteBoard declareTypes:[NSArray arrayWithObjects:NSStringPboardType, nil] owner:nil];
[pasteBoard setString: [_textField stringValue] forType:NSStringPboardType];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment