I tried to use the following code to copy the Image data to UIPasteboard on click of the Copy item in the menu.

  UIPasteboard *gpBoard = [UIPasteboard generalPasteboard];
  [[gpBoard setData:UIImageJPEGRepresentation(imgView.image, 1.0) forPasteboardType:UIPasteboardTypeListImage];

Which parameter i have to send for forPasteboardType:, and how to test after copying the data?

link|improve this question

71% accept rate
This link may help you. stackoverflow.com/questions/5111422/…. – EmptyStack Jul 11 '11 at 7:05
feedback

1 Answer

up vote 4 down vote accepted

It's a lot easier:

[UIPasteboard generalPasteboard].image = imgView.image;

To get the image out again:

UIImage *image = [UIPasteboard generalPasteboard].image;
link|improve this answer
Thanks alot, how do i test? should i get the image out and set it to some ImageView? – pradeepa Jul 11 '11 at 7:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.