NSPasteboard is the Cocoa class representation for clipboard data, allowing information to be copied and pasted within and between programs. NSPasteboards also represent information that is being dragged within or among programs.

learn more… | top users | synonyms

0
votes
1answer
16 views

Mac Listen for event: Copy to Pasteboard

I was reading NSPasteboard, then wanted to find.... I am trying to find the correct Notification method that listens to the copy event of data to the clipboard. Also I am trying to find file path ...
0
votes
1answer
13 views

Reading Multiple Dragged-n-Dropped Files

I have a small window inside the main xib (MainMenu.xib) with an NSImageView control for an OS X application. This view control has an NSImageView subclass that is supposed to accept files that the ...
1
vote
2answers
28 views

Determine the source application of current pasteboard content

Several OSX clipboard managers from AppStore show the ability to determine the source-application of content that was copied to the clipboard. I am writing some simple clipboard observer and would ...
0
votes
1answer
50 views

Copy/Paste of a custom managed object in core data

I am having a very hard time getting copy/paste to work on my custom managed object Person. The object contains properties and relationships. The object should provide the objectID. I intend to ...
0
votes
1answer
57 views

Get path of file from clipboard in OS X

I would like my app to get the full path of the file copied to the clipboard before. I tried this: NSPasteboard *p = [NSPasteboard generalPasteboard]; NSDictionary *options = [NSDictionary ...
1
vote
0answers
45 views

Dissociating NSPasteboardItem from pasteboard

What I am trying to do on a high level is store the current data that is on the pasteboard (data of any type) using this code, which I believe to be correct: - (NSArray *)readFromPasteBoard { ...
0
votes
1answer
79 views

How do I allow my NSTableView delegate/datasource handle copy/paste/etc

I have an NSTableView where I'd like to be able to highlight 1 or more rows, and then hit the delete key to delete them, or hit Cmd+C to copy them to the pasteboard. I've found a suggestion to ...
0
votes
0answers
60 views

NSPasteboardItem - how to get folderId and messageId from Outlook for Mac?

I'm dragging and dropping an email message from Outlook for Mac into my OS X app. My goal is to get the local path where the message can be found. If I drag and drop an email from the Mail.app, I can ...
0
votes
1answer
75 views

extra characters in output from NSPasteboard in Python script

My first post… I am using a python script to get the text from the clipboard on Mac OS X Lion. I set the clipboard with the following function: def setClip (text): pb = ...
-1
votes
1answer
55 views

When I use NSPasteboard I met Undefined symbols for architecture x86_64 [duplicate]

Possible Duplicate: symbol(s) not found in XCode, Cocoa application Below is the error information Undefined symbols for architecture x86_64: "_NSPasteboardTypeString", referenced ...
0
votes
0answers
42 views

Replacement / Fallback code to handle NSPasteboardItems on OS X 10.5

Apple notes say that the NSPasteboardItem class was introduced in 10.6, but surely Mac applications could handle clipboard data before 10.6? I've become a Mac dev after 10.6 was released, so I don't ...
0
votes
1answer
71 views

NSPasteboard readObjectsForClasses:options: returns value twice

Right to the point, then: First snippet (AppDelegate): - (void)applicationDidFinishLaunching:(NSNotification *)aNotification { //...code taken out... [NSEvent ...
1
vote
1answer
62 views

Launching application with NSPasteboard data

I would like to launch applications (or send to them using AppleEvents) using NSPasteboard data just like is done in the Finder when you drag and drop a file, text, image on an application (or in the ...
0
votes
2answers
92 views

Accept drag'n'drop from iPhoto or Aperture

I've created an app, containing an ImageView subclass which accepts drag'n'dropping files/folders directly from Finder. The thing is I'm now trying to make it accept photos, either from iPhoto or ...
0
votes
0answers
33 views

Accessing FileURL's through a custom System Service

I'm trying to create a simple system service so that when I right click on folder's & files I can get their respective FileURL via the 'services' menu and have that copy to the pasteboard. That ...
4
votes
2answers
195 views

NSPasteboard generalPasteboard returns nil

I'm attempting to copy an NSString to the pasteboard from within an NSBundle that is loaded inside another program as a plugin. For some reason, [NSPasteboard generalPasteboard] is returning nil. ...
1
vote
1answer
65 views

nspasteboard readObjectsForClasses blows up

I am trying to implement a simple drag and drop operation in a tableView. However, when I try to retrieve the data from the pasteboard using readObjectsForClasses, I get a runtime exception saying ...
1
vote
0answers
29 views

Getting origin and time of last Pasteboard item entry on Mac

Is there any way I can get the last time of entry made to the NSPasteboard and the application from which the copy/cut operation was performed on a Mac using Objective-C code or some terminal command
1
vote
0answers
50 views

Removing an item from NSPasteboard

Target: Mac OS X 10.7+, Xcode 4.3.x Core need: when dragging/pasting, allow me to process one type of item, pass along the rest to the superclass. I've got a subclass of NSTextView with a ...
0
votes
0answers
19 views

Prevent non-bitmap images from being dropped into NSView

How can I prevent people from drag-and-dropping a non-bitmap image (something that wont turn into a NSBitmapImageRep) into a view? Examples of such non-bitmaps are Adobe Illustrator files and PDFs. I ...
0
votes
1answer
136 views

NSBrowser fills NSPasteboard but won't drop

I have an NSBroswer with a series of entries that look up a text blob. If the blob exists then - (BOOL)browser:canDragRowsWithIndexes:inColumn:withEvent: returns YES. This invokes - ...
6
votes
3answers
469 views

Drag Files come across Sandbox(__CFPasteboardIssueSandboxExtensionForPath)

I processed drag operation from browser view to custom view.It work well in snow lepoard,but not in Mountain Lion with sandbox. in browser view: NSMutableArray* urls = [[[NSMutableArray alloc] ...
0
votes
1answer
94 views

“Paste” Text to External Mac App First Responder

Is there any (App Store safe) way of automatically filling another app's first responder text field with text? For example, using a hot-key specified by an NSStatusBar application, a user highlights ...
0
votes
0answers
119 views

copy url and local file on clipboard osx cocoa

I am using the following code to successfully copy the file.link to the clipboard, but the file on the local machine (at file.path) is not being copied for a paste with file contents to the finder. I ...
0
votes
1answer
262 views

Check what type of data is currently copied on NSPasteBoard

I am working on an application where I need to be able to know what type of data is just get copied onto NSPasteBoard. From documentation I knew that when we copy any content of file NSPasteBoard ...
0
votes
0answers
119 views

Cut & paste of files with NSPasteboard

How are we supposed to cut & paste files using NSPasteboard? Currently I implemented copy and paste by writing and reading file URLs. The problem with cut is, that after I wrote the URL to the ...
0
votes
1answer
93 views

put NSData and a file extension to pasteboard

I've been searching online for a long time the answer to a question that has left me locked. I have a subclassed NSView and want it to be draggable. When released into the desktop want to be saved as ...
0
votes
1answer
193 views

attributed string looses attachment in pasteboard paste

I've spent quite a few days searching for a solution to putting an attributed string with attachment onto an NSPasteboard. I can read an rtfd file with attachments, modify it's text and attributes ...
0
votes
2answers
136 views

NSPasteboard not returning the correct data type

I am trying to read the type of the data found in the pasteboard. However, the program is returning that I have an image (probably because that is the first condition in the if stattment). What am I ...
2
votes
0answers
184 views

What's the best strategy for implementing cut and paste in cocoa?

Implementing copy and paste is very straightforward with NSPasteBoard. However, NSPasteBoard doesn't seem to provide an obvious method to implement cut and paste. One strategy is to first copy then ...
0
votes
1answer
297 views

Copying NSTextView Text

When I implement the following code to copy text in an NSTextView object by way of an action and then manually paste it into something like a text editor or an email client, the pasted text is one ...
1
vote
0answers
204 views

copy and paste text + image from NSPasteboard

we are working on a C++ Qt applciation that copies selected text and/or images from external applications, modifies it and then paste it back. Since we are on Mac, we are doing this part with ...
3
votes
1answer
101 views

How much memory can the general NSPasteboard occupy?

The general NSPasteboard stores stuff that the user has copied. For example, like 100 images and 1000 words. Is there a limit to the size of the general NSPasteboard such that the user can copy say.. ...
0
votes
1answer
241 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 ...
1
vote
2answers
228 views

NSImage → NSURL → Custom Object

My application is trying to create custom objects from NSImage objects (coming from the pasteboard) but my current process only takes in image URLs. I'd like to avoid major changes at this point so ...
1
vote
1answer
239 views

Mac OSX / cocoa - getting location path string with raw data for a NSPasteBoard item

I have an app which allows me to drag items from my web browser to the app dock icon. When I drag an image from the web and get is raw data with [pBoardItem dataForType:NSPasteboardTypePNG]; I get ...
6
votes
2answers
947 views

NSPasteboard and simple custom data

I'm having a really difficult time trying to get NSPasteboard to work, so forgive me for my lack of understanding. All I want is a simple way to write and retrieve from the pasteboard a NSUInteger ...
1
vote
2answers
288 views

how to copy all attributed content from NSTextView to NSPasteboard

I'm trying to implement auto copy content from NSTextView to clipboard for pasting it in editor in the future. NSTextView has plain and attributed text and images. If I select all and copy by ...
0
votes
1answer
639 views

Multiple types on pasteboard including files, rtfd, and custom type (Mac OS X 10.6)

The new pasteboard api in 10.6 seems to work well once you get your head around UTIs, but I've come across a situation that I can't crack: What if you're declaring multiple data types in conjunction ...
0
votes
0answers
199 views

Cocoa Objective-C pasting from NSPasteboard

Is it possible to programatically paste an item from the NSPasteboard? Basically, I need a way to select a piece of text from an NSTableView and have the text print to another app. Is this possible?
1
vote
1answer
996 views

get string from nspasteboard

maybe it's been a long night but I am not able to understand how to check the clipboard for strings I have been reading the NSPasteboard documentation.. could some one help me out?
1
vote
1answer
181 views

NSPasteboard: Getting the name of the application that initiated a drag and drop session

My Cocoa app can receive Drag operations from other applications. Is there a way to determine which other application initiated the drag (i.e. from where the data is coming from)? I've implemented - ...
4
votes
3answers
341 views

How to save off the pasteboard contents first and restore them afterward?

I have a faceless Mac OS X app which needs to copy selection from other apps. I achieve this by simulating CMD+C keystrokes. It works perfectly. But there is a, I think it's critical, side effect. ...
0
votes
1answer
649 views

Putting contents of a file on NSPasteboard using UTI not NSFileContentsPboardType?

I have rich-text file with a few images and text. In my Cocoa app I'm trying to put the contents of that file on the NSDragPboard so that the user can drag the contents into other applications ...
0
votes
2answers
192 views

Copy current selection on hotkey

I want to copy the current selection, even if it's in another application like Mail, when the user hits a specified hotkey like Cultured Code does it in Things when you create a new task. I got the ...
1
vote
2answers
331 views

Send an array of strings to NSPasteBoard

How would be the best way to send an array of strings or numbers to the pasteboard? I've tried using [pasteBoard writeObjects:] but it looks like I have to subclass NSArray to do that, it asks for a ...
11
votes
3answers
1k views

Can I receive a callback whenever an NSPasteboard is written to?

I've read Apple's Pasteboard Programming Guide, but it doesn't answer a particular question I have. I'm trying to write a Cocoa application (for OS X, not iOS) that will keep track of everything that ...
0
votes
1answer
597 views

Does NSPasteboard retain owner objects?

You can call NSPasteboard like this: [pboard declareTypes:types owner:self]; Which means that the pasteboard will later ask the owner to supply data for a type as needed. However, what I can't find ...
2
votes
1answer
292 views

Get HTML of selected link in a Mac OS X Service

I'm writing a Service that will be bundled with my application. The user should be able to right-click on a link in Safari (or another web browser) and call my Service and have it process the link ...
0
votes
1answer
124 views

What could cause -[NSPasteboard types] to crash?

One of our customers is seeing a crash like this sometimes when pasting: 0 com.apple.Foundation 0x9143bd1d readPointerAt + 9 1 com.apple.Foundation 0x9153221f empty + 43 2 com.apple.Foundation ...

1 2