Re: NSPasteBoard - Copying contents of NSTextField
Re: NSPasteBoard - Copying contents of NSTextField
- Subject: Re: NSPasteBoard - Copying contents of NSTextField
- From: Fritz Anderson <email@hidden>
- Date: Tue, 9 Dec 2003 15:44:08 -0600
You have to send declareTypes:owner: to the pasteboard before putting
data into it.
-- F
On 9 Dec 2003, at 2:24 PM, Oliver Cameron wrote:
Im trying to copy the contents of a NSTextField (the NSTextField is:
webColorTextField)
...
- (void)copyContents:(id)sender
{
NSPasteboard *thePasteboard = [NSPasteboard generalPasteboard];
[thePasteboard setString:[webColorTextField stringValue]
forType:NSStringPboardType];
}
...
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.