How can you save a label's image to a UIPasteboard / Clipboard in Objective C - Xcode 7.1? I've tried this code bellow, but it only copies the text.
[UIPasteboard generalPasteboard].string = helloField.text;
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
pasteboard.string = @"paste me somewhere";
Is there away to copy the image as well or even just copying the image by its self?