Quote:
Originally Posted by kaje
Is there any way to copy text from a TextView that has User Interaction disabled to the clipboard via a UIButton?
|
What's the problem in just doing this in your IBOutlet for action?
Code:
if ([pasteboard containsPasteboardTypes: [NSArray arrayWithObject:@"public.utf8-plain-text"]])
NSLog(@"WE gots a string which is: %@", pasteboard.string);