How hard is it to do? I have a text with about 600 characters, multiple lines. Now I want to copy that text to the clipboard using the UIPasteboard classes. What would I need to implement?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Just call:

// To copy the string myText to the pasteboard:
[[UIPasteboard generalPasteboard] setString:myText];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.