iOS将多个图像复制到粘贴板

时间:2012-01-14 19:29:28

标签: ios image copy pasteboard

我可以将一张图片复制到粘贴板上,如下所示:

UIPasteboard *pasteboard;
pasteboard = [UIPasteboard generalPasteboard];
UIImage *image;
[pasteboard setImage:image];

如何将两个或三个图像复制到粘贴板?

1 个答案:

答案 0 :(得分:5)

[[UIPasteboard generalPasteboard] setImages:[NSArray arrayWithObjects:firstImage, secondImage, nil]];

我认为这就是你要找的全部。也可以设置多种类型的单个图像(PNG,JPG等),以便其他应用程序更有可能找到可用的图像。

〜祝你好运