Tagged Questions
5
votes
1answer
2k 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 ...
1
vote
1answer
53 views
iOS - detect when user copy to clipboard - [UIPasteboard generalPasteboard]
quick easy question
while using a WebView with some text in it - the user can select a snippet of text from it
and press a UIButton which I created - running the following action:
...
0
votes
1answer
81 views
How to obtain a copied image from the pasteboard?
I have a photo editing app where I want to provide a way for the user to edit photos from the pasteboard. For example the user might copy a photo from his website in Safari and then head over to my ...
0
votes
1answer
261 views
How to copy UIImage dat to clipboard/UIPasteboard? And how do i test?
I tried to use the following code to copy the Image data to UIPasteboard on click of the Copy item in the menu.
UIPasteboard *gpBoard = [UIPasteboard generalPasteboard];
[[gpBoard ...
0
votes
1answer
366 views
Copying an image to pasteboard transcode jpeg to png
I'm working on an iPhone app to embed/extract data in jpeg files. I want to give the user the ability to copy the resulting image to the clipboard, but the code I'm using coverts the resulting jpeg ...
0
votes
1answer
867 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 ...