Tagged Questions
3
votes
2answers
1k views
UIPasteboard - cannot copy text
This code should copy the string to the generalPasteboard, as the [[UIPasteboard generalPasteboard] string] object, but the method causes the program to terminate.
- (void)copyResultToPasteboard {
...
0
votes
0answers
99 views
Separating Strings in a UIPasteboard
I am trying to separate strings from a UIPasteBoard
pasteBoard = [UIPasteboard pasteboardWithName:@"FileManager" create:YES];
NSArray *indexes = [self.tableView indexPathsForSelectedRows];
...