0
votes
0answers
108 views
Programmatically pasting into an iPhone UITextView
I have an iPhone app with a UITextView. I'd like to be able to paste the clipboard contents into it without showing the UIMenuController.
I tried calling the paste: method on the UITextView, and on …
1
vote
2answers
127 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 {
…
1
vote
1answer
53 views
Is it possible to be notified when something is written to generalPasteboard?
I'm interested in responding to when the user performs a standard Copy to the generalPasteboard as part of the default UIWebView control. I'd like to take some action in response to this.
Is this …
0
votes
3answers
209 views
Would the general iPhone pasteboard ever contain more than one item?
Would pasteboard.numberOfItems (in the code below) ever be greater than 1? How would the user cause this to happen?
UIPasteboard *pasteBoard = [UIPasteboard generalPasteboard];
…
2
votes
1answer
402 views
Copy and Paste on iPhone with multiple data representations
I encountered some issues when trying to put more than one data representation onto the pasteboard on iPhone 3.0.
What I'm trying to do is put a data representation and a string representation onto …
