October 11, 2012
Posted by William
iOS 6 UIPasteboard setImages and setImage
The iOS6 sdk has some changes to it. Along with these changes come changes to the UIPasteboard. One thing is the UIPasteboard now handles most images as NSData. Here is my solution to accessing and setting images in the UIPasteBoard. Accessing Images: for (NSObject* obj in [UIPasteboard generalPasteboard].images) { if ([obj isKindOfClass:[NSData class]]) [...]



