Tagged Questions
The pasteboard tag has no wiki summary.
7
votes
4answers
2k views
Simple way to show the 'Copy' popup on UITableViewCells like the address book App
Is there a simple way for subclasses of UITableViewCell to show the 'Copy' UIMenuController popup like in the Address book app (see screenshot), after the selection is held for a while?
5
votes
2answers
661 views
Unfiltering NSPasteboard
Is there a way to unfilter an NSPasteboard for what the source application specifically declared it would provide?
I'm attempting to serialize pasteboard data in my application. When another ...
4
votes
2answers
2k views
data share between two iphone apps
i want to share text data between two iphone apps. How can i use paste board for this purpose. Can anyone help me with a sample code. Thanks in advance. Suggest me if there are better ways than ...
3
votes
3answers
271 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 ...
2
votes
1answer
538 views
Crashing the OS X Pasteboard
I have an application that reads in text by emulating CMD-C copy commands and reading the pasteboard - unfortunately this the only way to achieve what I need. Occasionally, as this is under ...
2
votes
2answers
1k views
Does iPhone have a clipboard API?
Does iPhone have a clipboard API? It seems one can call an API function to set text to the pasteboard which will be accessible by other apps., but can someone verify that this is correct?
Thanks.
2
votes
1answer
2k views
Writing a string to NSPasteBoard
I cannot get this method to return YES:
- (BOOL) writeToPasteBoard:(NSString *)stringToWrite
{
return [pasteBoard setString:stringToWrite forType:NSStringPboardType];
}
I have verified that ...
1
vote
1answer
30 views
Pasteboardmanager reference
HI i have an old code which uses a scrapref and selects scrap using GetScrapbyname(kscrapclipboardscrap,kscrapgetnamedscrap,&scrapref);
Than it takes the flavour count using getscrapflavourcount ...
1
vote
2answers
481 views
Copy NSAttributedString to pasteboard
Brand new to Cocoa and I'm trying to figure out how to copy an NSAttributedString to the pasteboard. I've looked in the docs and not sure if I'm supposed to use a NSPasteboardItem or not.
Here's what ...
1
vote
2answers
999 views
How to copy to clipboard with X11?
Using the frameworks on OS X, I can use the following to copy a PNG to the pasteboard (in C — obviously I could use NSPasteboard with Cocoa):
#include ...
1
vote
4answers
844 views
Is it possible to access the Mac OS X pasteboard when logged in via SSH?
We have the following snippet.
OSStatus createErr = PasteboardCreate(kPasteboardClipboard, &m_pboard);
if (createErr != noErr) {
LOG((CLOG_DEBUG "failed to create clipboard reference: error %i" ...
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
20 views
iOS copy multiple images to pasteboard
I can copy one image to the pasteboard like so:
UIPasteboard *pasteboard;
pasteboard = [UIPasteboard generalPasteboard];
UIImage *image;
[pasteboard setImage:image];
How can I copy two or three ...
0
votes
1answer
58 views
How to use NSPasteboard to transfer data between applications (using contextual menus)
"NSPasteboard objects transfer data to and from the pasteboard server. The server is shared by all running applications. It contains data that the user has cut or copied, as well as other data that ...
0
votes
1answer
82 views
Drag String data from My Cocoa App to Third-Party Cocoa App
I want to drag a row from my tableview and drop it into any other NSTextField in Mac OS X 10.6, and have a string of text be dropped.
Drag and drop already works within my app (between a NSTableView ...
0
votes
1answer
220 views
Pass object pointer in drag/drop operation
Is it possible to pass the pointer to an object in a drag and drop operation?
Here is the scenario...
I have an 'NSArray' of custom objects. For arguments sake we'll say this is a list of person ...
0
votes
1answer
573 views
iphone sdk - problem pasting into current text location
Hi guys
I'm trying to paste text right into where the cursor currently is. I have been trying to do what it says at:
- http://dev.ragfield.com/2009/09/insert-text-at-current-cursor-location.html
The ...
0
votes
2answers
558 views
Getting RTF data out of Mac OS X pasteboard (clipboard)
According to the man page for pbpaste,
-Prefer {txt | rtf | ps}
tells pbpaste what type of data to look for in the pasteboard
first. As stated above, pbpaste normally ...