1)我使用UIPasteboard方法从[UIPasteboard generalPasteboard].image;复制图像

2)创建图像后,我要清洁UIPasteboard。所以我写了这个方法[UIPasteboard generalPasteboard].image = nil;,但是在ios 4和ios 5上工作正常,但是在ios 6上却出了问题。

3)在我的应用程序中,我想清除UIPasteboard或将UIPasteboard值设置为零。如何在iOS 6上执行此操作?

最佳答案

这是我目前使用的

UIPasteboard *pb = [UIPasteboard generalPasteboard];
[pb setValue:@"" forPasteboardType:UIPasteboardNameGeneral];

关于iphone - 如何发挥UIPasteboard的值(value),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13235528/

10-09 09:08