UIPasteboard is used to store different types of data into iOS clipboard. We can store data of NSString, NSArray, UIImage, NSUrl, NSData into it and can retrieve the data into that particular format too.
0
votes
1answer
50 views
Pasting Gif images into Facebook copied from App
I have an app which plays GIF images (animations). I can copy it using UIPasteBoard and paste it into iPhone's native text app or attach it mail.
How can i paste it into Facebook app's text message ...
2
votes
1answer
67 views
Copying .gif images to clipboard using UIPasteboard through code [iOS]
I want to copy .gif images to clipboard, so as user can paste that gif images from application to mails, etc...
I have tried :-
NSData *data = [NSData dataWithContentsOfURL:[NSURL ...
1
vote
2answers
48 views
UIPasteboard not cleaned up
I have two apps that use an assortment of UIPasteboard names as a scheme to share data between each other.
The pasteboards use the reverse DNS naming convention, like so: com.mycompany.myapp.stuffx, ...
2
votes
1answer
34 views
Undoing Clipboard Text with NSManager
I'm implementing NSUndoManager with a UITextView control. If I want to undo the last text change, I can do it with
// NSUndoManager *myUndoManager; Declared in the header
if ...
-3
votes
1answer
58 views
Copy button in an iOS application [closed]
I want to add in my application a button that allows me to copy the text in a label.
How can I do it?
1
vote
1answer
115 views
copy paste text and image both to clipboard in iphone app
I am working on an app where I want to copy some text and image and allow user to paste it anywhere. I know it is done using UIPasteboard and I have implemented copying of image but now I want to copy ...
9
votes
1answer
425 views
How to write custom metadata to PNG images in iOS
My application should be able to write custom metadata entries to PNG images for export to the UIPasteboard.
By piecing together various posts on the subject, I've been able to come up with the class ...
0
votes
0answers
61 views
iOS - Enumerate all 'private' pasteboard names
In iOS, is there any known way to enumerate the names of every application/'private' pasteboard currently in existence on a device? For instance, if one app does:
UIPasteboard* pb = [UIPasteboard ...
1
vote
1answer
103 views
How to get copied image in iOS?
I know that when user makes for example image Copy in Photo Albums or Safari. Is there a way to get this image in my application programmatically?
Explain, please how to get this copied image.
1
vote
0answers
72 views
Strip Images from Pasteboard
Can someone please guide how I can strip images from attributed text on the pasteboard?
EXAMPLE
I have a UITextView that supports NSAttributedString. If I allow a user to paste something from the ...
0
votes
0answers
47 views
Paste file in iphones file directory [closed]
I want to produce an app, which simply overwrites files in the iphone file system, but I don´t know how to manage the overwrite thing. Can anyone help me?
1
vote
0answers
111 views
iOS 5: UIWebView not copying text from Excel files
I used UIPasteboardChangedNotification to detect when a user Copy a highlighted text
-(void)viewDidLoad {
[[NSNotificationCenter defaultCenter] addObserver:self
...
1
vote
0answers
121 views
Copy Original Emoticon Character to UIPasteBoard Objective-C
When I copy the original character such as: ♥ and then when I paste it looks like
How can I keep the original character when I paste?
0
votes
1answer
92 views
Copying audio into general UIPasteboard
I am implementing Audio Copy feature in my audio synthesis app using the general UIPasteboard so that the audio that was copied can be pasted in MAPI: AudioCopy/AudioPaste or Intua Audio Sharing ...
2
votes
1answer
269 views
Can iOS app get UIPasteboardChangedNotification in background?
I have seen an iphone app called CopyTranslate. When we copy something, e.g. in safari, it can give an translation of what we copied by a local notification.
So I am wondering if app can receive ...
0
votes
1answer
205 views
UIPasteboard Pasteboard App iOS iPhone
I am looking forward developing a pasteboard app for the iPhone.
The question is: how can I realize when something has been copied? I know I can access the UIPasteboard generalPasteboard properties.
...
6
votes
1answer
206 views
copy video to uipasteboard
I have successfully able to copy or add the image to pasteboard by using following code:
if (ver_float < 6.0)
{
UIPasteboard *pasteboard;
pasteboard = [UIPasteboard generalPasteboard];
...
1
vote
3answers
220 views
Can I get all names of iOS UIPasteboard?
To instantiate UIPasteboard, a name is needed. But I want to know all names of UIPasteboard.
Are there any way to know all names of UIPasteboard?
For example, if the name of pasteboard is already ...
0
votes
1answer
114 views
iOS 6: UserInfo returns nil for Pasteboard change Notification
Here's the Notification Observer for the Pasteboard change event, I need it to handle the copied selected text
[[NSNotificationCenter defaultCenter] addObserver:self
...
1
vote
1answer
45 views
Copy icon Photos.app
I'm implementing an image copy function like Photos.app (with UIPasteboard). Like Photos.app I would like to display a "Copy" popover button :
Is there an official API to create this button or do I ...
0
votes
0answers
71 views
How to copy CSV files using UIPasteboard?
In my iOS app,I have implemented a functionality to copy an image to clipboard using UIPasteboard. The code is as follows.
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
...
1
vote
2answers
185 views
How to get data in iOS pasteboard to stay multiple access
What I'm trying to do currently is basically I have 2 apps and based on if the other one is installed or not, behave in a certain way. I came upon Pasteboard for inter-app communication so I thought I ...
0
votes
1answer
202 views
UIPasteboard: image saving issue
I'v thought that dealing with UIPasteboard is easy but it turned out to be a time-consuming issue...
I want to store an UIImage in UIPasteboard and then paste this image in iMessage, WhatsApp, ...
1
vote
1answer
289 views
WeChat SDK 1.1 iOS6 crash
Hi I'm using wechat sdk 1.1 on my application and when I send request to open wechat, it crashes with this error mesage
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', ...
1
vote
0answers
66 views
How is the Find pasteboard used?
I'm reading through the docs for UIPasteboard, and it says that there are two main types of pasteboard, the "General Pasteboard", used for system-wide copy and paste, and the "Find Pasteboard" ...
4
votes
1answer
283 views
UIPasteBoard doesn't paste audio files?
I am developing an app in which one of the module is, A simple listing TableView which shows the list of audio file. When user selects any audio file an action sheet comes with one of the option SMS. ...
2
votes
1answer
605 views
Copy Text with Formatting - iOS 6 NSAttributedString to Pasteboard
How can I programmatically copy formatted text (e.g. italic) from a UITextView, so that when pasted into another program (e.g. Mail) the formatting will be retained? I'm assuming the correct approach ...
3
votes
0answers
181 views
UIPasteboard Policies for deleting data
What does UIPasteboard do when it is "full"? Does it delete the oldest files first?
Is there any limit to the total size in MB for UIPasteboard?
My use case: Storing Video Files as NSData in ...
1
vote
0answers
104 views
UIWebView copy/paste do not keep Font face and size
In a contenteditable UIWebView, when I copy then paste some text, the content is pasted with any bold or italic attributes it may have, but is font is always replaced by Times (always with size="3") ...
3
votes
2answers
584 views
Copy NSAttributedString in UIPasteBoard
How do you copy an NSAttributedString in the pasteboard, to allow the user to paste, or to paste programmatically (with - (void)paste:(id)sender, from UIResponderStandardEditActions protocol).
I ...
0
votes
1answer
232 views
Copy partial screenshot to Pasteboard
So, the code to copy part of my screen to the pasteboard works because it was successfully coping it to my photo album. But, I want to be able to paste the partial screenshot into a new SMS message. ...
2
votes
2answers
491 views
Named UIPasteboard between apps?
Is it possible to use a named UIPasteboard (ie, not the global one) to transfer data between two apps?
the apps are completely independent of each other, so have different bundle IDs from different ...
1
vote
1answer
163 views
Image added to UIPasteboard is not displaying PASTE option in TWITTER
I've searched for couple of post/questions asked over UIPasteboard which are posted on StackOverflow ,But i didnt find any solution to my problem so posting this question.
I want to paste copied ...
0
votes
0answers
46 views
UIPasteboard to copy NSManagedObject
- (void)copy:(id)sender{
Sight *sight = [[self fetchedResultsController] objectAtIndexPath:selIndexPath];
[[UIPasteboard generalPasteboard] setData:(NSData *)sight forPasteboardType:@"Sight"];
...
0
votes
1answer
91 views
nsnumber into uipasteboard
I'd like to copy a float into the pasteboard, but the important thing is the value, as I want to paste it later in numbers, as a number.
Tried with
[pasteboard ...
1
vote
1answer
882 views
iOS SDK getting clipboard text on application load
I would like to get the text copied to clipboard when application launching.
I can use following text to get the available text from clipboard. But I need to use this value in a different ...
0
votes
1answer
175 views
Copy Image from pdf or uiwebview in IOS?
how can i get image from UIPasteboard after the user click copy actually i can get Nsdata from UIPasteboard but i think it needs specific coding to be assigned to uiimageview how can i do this ? ...
0
votes
1answer
165 views
How to copy NSDate to UIPasteboard?
According to the docs I must use
- (void)setValue:(id)value forPasteboardType:(NSString *)pasteboardType
But I can't find the UTI for NSDate. I want to copy the raw NSDate itself as well as a ...
0
votes
0answers
165 views
how to paste the Image in MessageComposer
I had copied the image as data to UIPasteboard, i need this image to be automatically pasted to Message Compose without the user interaction. how to do it ?
NSData *imageData = ...
1
vote
2answers
602 views
How to clear/empty pasteboard on viewWillDisappear
I use pasteboard for copy/paste text between two UITextView.
So, Code looks like this
- (void)viewDidLoad {
[super viewDidLoad];
pasteBoard = [UIPasteboard generalPasteboard]; //it is ...
0
votes
2answers
254 views
UIPasteboard security
I need to store information on application that always need to be read when open application. But I don't want user copy/dump/or edit it. So the question is : "Is UIPasteboard can solve this problem?" ...
1
vote
0answers
474 views
Use standard Copy and retrieve value from the UIPasteboard with a custom UIMenuController item
i've a web view with displayed a pdf file. As a standard for the web view the user can select a text and perform standard operation like copy, cut. I need to add a custom UIMenuController
for show ...
0
votes
1answer
421 views
iPhone iOS how to paste image into a UIImageView with long press
I got a general idea that I can use a UIPasteBoard to control the copy/paste contents. I would like to allow the user to long press on an image and overwrite that image with the paste board contents.
...
0
votes
1answer
330 views
How do I know the MIME type for image data in UIPasteboard?
I want to import an image from UIPasteboard. The dataForPasteboardType: method gives me NSData of the image, but I have no idea whether that’s a GIF, PNG, JPEG or whatever. I can create an UIImage ...
0
votes
2answers
202 views
UIPasteBoard Changes my Image Orientation
I am Copying the array of Images in UIPasteBoard and When I try to Paste the images in mail the Image orientation is changing. This is How I am Copying the Images.
UIPasteboard *pasteBoard = ...
1
vote
2answers
372 views
UIPasteBoard string never get a right value after cut a text
i have cut a text in a textview using UIMenuController and i want to paste it in another place. But the UIPasteBoard string never get a right value. FYI, it just happen in cut process, but it's no ...
6
votes
1answer
507 views
Filter UIPasteboard when copying web content from safari to contenteditable UIWebView
My app is a rich editor which uses UIWebView and HTML5's contenteditable feature.
Now, my app have some problem to deal with copying web content from safari to my UIWebView when the web content has ...
3
votes
1answer
379 views
UIPasteboard limit
How many custom UIPasteboards can be stored on a single device?I'm curious to know: 1. What the max number of UIPasteboard can be created and what will happen when MAX_NUMBER_OF_PASTEBOARDS is reached ...
1
vote
1answer
231 views
copying to generalPasteboard
I am not receiving a clear answer on both Google and here about this; I don't know why it has to be so difficult. What is the code that let's you copy to generalPasteboard?
5
votes
2answers
1k views
MFMessageComposeViewController not displaying camera icon
When I bring up a "New Message" manually I will see a camera icon to the left of the text edit area. When I use the MFMessageComposeViewController it will not display this icon which means you cannot ...








