无法理解iOS系统UIPasteboard

时间:2015-02-24 06:39:20

标签: ios iphone xcode6 uipasteboard

我正在使用自定义表情符号键盘这是一个键盘扩展,问题是在点击按钮时我需要在粘贴板中复制图像并将其粘贴到另一个应用程序中。我使用过这些代码,但无法将图像复制到粘贴板

- .h文件中的代码

    UIPasteboard *pasteboard_img;

- 在viewDidLoad()中编码

    pasteboard_img = [UIPasteboard generalPasteboard];

- 在键盘上按下按钮时调用的方法中的代码

    [pasteboard_img setImage:[UIImage imageNamed:[array_image objectAtIndex:sender.tag]]];

〜其中array_image是带有图像名称的数组。

1 个答案:

答案 0 :(得分:1)

 pasteboard_img.persistent=YES;

使用此功能。