Tagged Questions
1
vote
1answer
487 views
Receiving UIPasteboard (generalPasteboard) notification while in the background
In there a way to do this? I register my object for this (UIPasteboardChangedNotification) at launch time, but when sending it to the background and opening (for instance) Safari and copying some ...
1
vote
4answers
1k 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];
...
0
votes
0answers
65 views
UIPasteboard truncating strings when pasting multiple items into Mail
My app attempts to copy images and text in sequence to the pasteboard, as a series of items.
I am finding that text strings are truncated at the first "\n" character when they are pasted from the ...
0
votes
1answer
231 views
Getting NSRange from Subclassed UIPasteboard Selection
I am wondering if there is some way to subclass UIPasteboard in order to get the selection behavior, but not get the "Cut, Copy, and Paste" options. In addition to this, is there some notification I ...
0
votes
1answer
868 views
How can force copy selected text ? [iPhone]
Hi~ I have one question. ^^
How can i get "selected text" on UIWebView (or UITextView) ?
I'd like to copy "selected text" without copy/paste popup-view.
1) i removed ... copy/paste view. ( it was ...
0
votes
2answers
732 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 ...