I am using UIPasteboard to access copied images.
UIPasteboard *pasteBoard = [UIPasteboard generalPasteboard];
NSArray *images = pasteBoard.images;
It is running fine on iOS 5 devices, the array contains UIImage objects.
On device running iOS 6 the array contains NSData objects instead. Is it known issue?
Yes, after seeing your question I checked that and wondered that
pasteBoard.imagesis returning theNSDataarray instead ofimages. So to get those images from data I used the below code and successfully got them:If you copied more than one image then you would have to use a loop for getting all. So I think it should not be an issue.