Tagged Questions
The uipasteboard tag has no wiki summary.
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
269 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
166 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
202 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
463 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
58 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
184 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
1answer
488 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
0answers
181 views
How to set frame of detail and master of UIsplitviewcontroller?
in my appication it always set to
master 320 x 768
detail 703 x 768
i am using landscape application
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
0answers
8 views
Why does the UIPasteboard ignore the image orientation I use?
I am taking an image from the camera, and rotating it to a new orientation, and then pasting it onto the general pasteboard. However, no matter what I pass in to orientation, what ends up being ...
0
votes
0answers
18 views
Copy to pastboard programmatically from a PDF document in UIWebView
I am trying to programmatically copy a selection in a UIWebView to the clipboard. This works fine with HTML content. This won't work with PDF content. Although (within a PDF document) the ...
0
votes
1answer
32 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
0answers
28 views
The persistancy on my UIPasteboard is still active when the app is uninstalled. why?
I use the UIPasteboard class to use data with severals app. The doc say that the persistancy is removed when the creator application is uninstalled. I do two app, one for copy, the other for past:
...
0
votes
1answer
32 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
2answers
75 views
Why doesn't my UIPasteboard code work?
I am having a weird issue with the UIPasteboard.
I am copying text from Safari, and then in my app looking into UIPasteboard to see if it contains any data using this code:
[[UIPasteboard ...
0
votes
1answer
47 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
0answers
112 views
copy and paste from UIPasteboard for send MMS
I want to send MMS with screen shot through app for this I used following code. Here I copy the screen shot in "pasteBoard" and when I open mms send view at that time I need paste manually for ...
0
votes
0answers
70 views
Adding a subclass of NSManagedObject Item to the UIPasteboard - Cut, Copy, Paste
I'm trying to implement Cut, Copy, Paste in my Application. The Items that I would like to store on the UIPasteboard are a subclasses of NSManagedObject.
I followed this answer and it was great up ...
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
470 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
0answers
98 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];
...
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
325 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
371 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
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
875 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
0answers
260 views
iPhone generalPasteboard loses contents if application is closed by an -openURL: call
I have a method, that puts something on the pasteboard. This method is called one of two ways, one, as an IBAction from a button, the other from another method which afterwards closes the application ...
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 ...