0

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?

dontWatchMyProfile
  • 45,440
  • 50
  • 177
  • 260

1 Answers1

2

Just call:

// To copy the string myText to the pasteboard:
[[UIPasteboard generalPasteboard] setString:myText];
Ole Begemann
  • 135,006
  • 31
  • 278
  • 256