2

我可以像这样将一张图像复制到粘贴板:

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

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

4

1 回答 1

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

我想这就是你要找的一切。还可以将单个图像设置为多种类型(PNG、JPG 等),以便其他应用程序更有可能找到可用的图像。

~ 祝你好运

于 2012-01-14T19:50:11.583 回答