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 ...
3
votes
3answers
273 views
iOS - UIPasteboard not working outside app
I think this is more of an SDK flaw than my apps' but recently I've been trying to use UIPasteboard to copy strings from my app and it works fine to pasting somewhere when I'm inside the app.
When I ...
3
votes
1answer
167 views
Other apps paste the HTML rather than the text version of our pasteboard data in iOS 5
We have an existing app that allows the user to copy text to the pasteboard. When possible, we put both HTML and plain text on the clipboard, since we don't know what other app the user might be ...
3
votes
2answers
203 views
Want to copy a gif image from my app to the in-app mail window. How do i do that?
I am having some confusion here...
how do i display gif for my iPhone app?
(I mean there are various articles which i found, but every tutorial just didn't have a complete solution)
There are many ...
3
votes
1answer
465 views
UIPasteboard Puzzle
When using the code
[[UIPasteboard generalPasteboard] setString:@"mung"];
NSLog(@"%@", [UIPasteboard generalPasteboard].string);
the console reports the new value of the string, but typing ...
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 {
...
2
votes
3answers
166 views
Want to paste gif into mail window using UIPasteBoard
I wanted to show a gif so what i did was that i split my gif and showed it in a animation for UIImageView using this link.
...
2
votes
3answers
1k views
copy HTML to UIPasteboard
I want to transfer HTML from my app to the iPhone mail application.
I already have the HTML text - lest say <span style='color:red'>Test</span>
I can place this to UIPasteBoard - but when I ...
1
vote
1answer
60 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:
...
1
vote
1answer
186 views
copy image and text to the UIPasteboard
I want to copy image and text (both) to UIPasteBoard.
Is it possible to copy both the text and image.
Here I can copy image only or text only .
How to copy both ?
My code for copy image is as ...
1
vote
2answers
269 views
UIPasteboard size
I am trying to do an upgrade path for a lite to full version of an application, that can store an indefinite amount of data (I dont want to do in app purchase).
I would like to be able to upgrade ...
1
vote
1answer
443 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 ...
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
1answer
34 views
Copy functionality in iOS by using UIPasteboard
NSString *copyStringverse = [[NSString alloc] initWithFormat:@"%@",[textview.text]];
UIPasteboard *pb = [UIPasteboard generalPasteboard];
[pb setString:copyStringverse];
I am using above code for ...
0
votes
1answer
34 views
UIPasteboard copy fails to paste correctly in Notes and Mail
I'm using the following code to copy a string of text which contains both English and Hebrew characters into UIPasteboard.
UIPasteboard *appPasteBoard = [UIPasteboard generalPasteboard];
...
0
votes
1answer
48 views
Can UIPasteBoard be accessed from Safari?
I'd like to copy something from a native application into the paste board. And then read the copied value from the native browser. Is there a way to do this?
0
votes
1answer
102 views
UIPasteboard is stubbornly persistent, no matter what I do
I am creating a application UIPasteboard with my app's identifier as a name (e.g. com.example.app.pboard) as suggested in the docs.
All the copying and pasting works, but the damn thing never goes ...
0
votes
1answer
83 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
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
2answers
228 views
iPhone, how does one read an image from the UIPasteboard as NSData?
I have an image that I append a message to inside the NSData of the image and then save it to the photo library using ALAssetLibrary. I then send it to someone over email.
I want to give the user the ...
0
votes
1answer
264 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
471 views
iOS: How to copy HTML into the cut-paste buffer?
I'm interested in letting my users copy the text they've entered into the cut-and-paste buffer, but I'd like to do that as HTML.
Is such a thing even possible? Or do I need to use a MIME format? (I ...
0
votes
1answer
172 views
Overriding UIPasteboard Globally for iOS/iPhone
The purpose of my application is to extend the functionality of the UIPasteboard across all applications on the iPhone. So if you are composing a text message, you could doubletap and access the ...
0
votes
1answer
379 views
Grabbing the UIPasteboard like Pastebot while running in the background
I know this is possible as Tapbots Pastebot does this. I am trying to grab the UIPasteboard when my iPhone app is running in the background and add it to a UITableView just as Pastebot does but I am ...
0
votes
1answer
326 views
Pasting image in sms through UIPasteBoard
What I'm trying to do is to paste some images from my app in SMS.
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
NSString *imagefile = [[NSBundle mainBundle]
...
0
votes
1answer
248 views
Tap once to copy UITextView text substring
Say you've got a UITextView populated with a chunk of text. When a user taps on a word within the text I want the app to copy (retrieve the string) that word immediately. In your knowledge, is there ...
0
votes
1answer
876 views
get copied data from UIpasteboard
i have copied image from UIwebView using clipboard and i want to mail it.For this,I use general pasteboard to get data,but there is a problem in retrieving data.When i check the pasteboard current ...
0
votes
1answer
157 views
Easy way to copy multiline text to the clipboard?
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?
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
176 views
Determine font(s) used in uipasteboard text on the iPhone
Here is the scenerio:
The user copies random text with mixed fonts.
How do I determine the font(s) used?
When the text is pasted from the UIPasteboard into a textview it correctly shows the mixed ...
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 ...