1) I copy image from UIPasteboard using this method [UIPasteboard generalPasteboard].image;
2) After creating an image i want to clean the UIPasteboard. so i write this method [UIPasteboard generalPasteboard].image = nil; But this working fine on ios 4 and ios 5 But it gives problem on ios 6.
3) In my app i want to clean UIPasteboard or nil the UIPasteboard value. How can i do this on ios 6?
This is what I currently use