I want to copy image and text (both) to UIPasteBoard. Is it possible to copy both the text and image.

Here I can copy image only or text only . How to copy both ?

My code for copy image is as follows,

UIPasteboard *pasteBoard = [UIPasteboard pasteboardWithName:UIPasteboardNameGeneral create:NO];
pasteBoard.persistent = YES;
NSData *data = UIImagePNGRepresentation(newImage);
[pasteBoard setData:data forPasteboardType:(NSString *)kUTTypePNG]; 

Thanks in advance !!!!!

link|improve this question

45% accept rate
feedback

1 Answer

You should be setting the items property of the pasteboard-

The description of items from the reference is-

items

The pasteboard items on the pasteboard. @property(nonatomic,copy) NSArray *items Discussion

The value of the property is an array of dictionaries. Each dictionary represents a pasteboard item, with the key being the representation type and the value the data object or property-list object associated with that type. Setting this property replaces all of the current pasteboard items.

So, you can add two dictionaries to an array, with key value pairs being & and set this array to the items property.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.