Brand new for Cocoa, and I'm trying to figure out how to copy NSAttributedString to cardboard. I have looked through the docs and not sure if I should use NSPasteboardItem or not.
Here I have to copy the usual NSString:
NSPasteboard *pb = [NSPasteboard generalPasteboard]; NSArray *types = [NSArray arrayWithObjects:NSStringPboardType, nil]; [pb declareTypes:types owner:self]; [pb setString:@"asdfasdf" forType:NSStringPboardType];
How to set NSAttributedString?
thanks
cocoa nsattributedstring
Chris
source share