Reputation: 8338
I am working on an app where I want to copy some text and image and allow user to paste it anywhere. I know it is done using UIPasteboard and I have implemented copying of image but now I want to copy image and text both and then let user paste it. There can be several images and text messages which can come in any order. It is like a paragraph being written with text and images. Is this possible? Can someone suggest me how can I achieve it?
Regards
Pankaj
Upvotes: 2
Views: 2471
Reputation: 62686
You can put anything you wish in the pasteboard, including multiple entries like of type UIPasteboardTypeListString
and another of type UIPasteboardTypeListImage
, and even another of type @"My Made-Up Type"
. Think of it as a shared mutable dictionary.
It's up to the receiving application to understand what to do with them.
Upvotes: 1