Skip to main content

All Questions

-1 votes
1 answer
26 views

Is there a way to be notified any time a drag-and-drop operation begins in the current application?

I'm working on a framework that's intended to be added to a native macOS application so that it can post events into the application's event queue in response to touch-screen events. In order to ...
Bri Bri's user avatar
  • 2,329
0 votes
1 answer
95 views

The methods for Drag and Drop in NSOutlineView are not getting called

I'm trying to enable drag and drop functionality for NSOutlineView in my MacOS app. I want to drag a child from a folder to another folder within the outline view. I want test asset 1 to be dragged ...
Ishi's user avatar
  • 3
0 votes
0 answers
51 views

Setting text color of cells in outline view while dragging

I have a split view window with an outline view on the left and a table view on the right. I want to be able to drag items from the table view and drop them onto items in the outline view. The ...
johnpurlia's user avatar
0 votes
0 answers
37 views

How can I add a border to NSWindow for a drag operation?

I'm trying to add a border to an NSWindow for a drag operation (in the same way that dragging into a Finder window puts a blue border around it). The problem I'm experiencing is that the border is ...
headbanger's user avatar
  • 1,092
0 votes
0 answers
150 views

Swift - Notify when the user is starting to drag an object outside my app

I have an App that handles files dropped into the window using the Swift Drag-and-Drop mechanism. I would like to implement whenever the user starts dragging an object outside my app, that my UI will ...
Curious Fishel's user avatar
0 votes
1 answer
132 views

iOS 11 DropInteraction Session from Photos returns invalid file path

When dropping images from the Photos app into my custom application, at - (void)dropInteraction:(UIDropInteraction *)interaction performDrop:(id<UIDropSession>)session I receive an NSURL* whose ...
Mapsy's user avatar
  • 4,262
0 votes
1 answer
112 views

Cocoa: drag and drop inconsistency

In my cocoa code, I’ve implemented a drag & drop for a file path. It is triggered not by a mouseDown, but as a result of a callback I receive from javascript code (after click-dragging an HTML ...
gil_mo's user avatar
  • 605
3 votes
1 answer
1k views

iOS Drag & Drop. How to replace a cell with a custom view while dragging

Is it possible to completely replace an element from draggable UITableViewCell to custom UIView? For example, I drag a cell, and I want to display a circle when I click on the cell, and in the ...
Mikhail S's user avatar
  • 4,034
0 votes
1 answer
132 views

Can't access property sourceIndexPath on UIDragItem

I'm creating a viewcontroller that contains two separate UICollectionViews. I'm allowing for cells to be dragged from one UICollectionView to another. In the method -(void)collectionView:(...
Martijn's user avatar
  • 460
0 votes
1 answer
48 views

Can't Drag from NSTableView with more than one row

I'm writing an app that should allow me to drag items from an NSTableView to another view (custom timeline view). This works perfectly as long as there is only one item in my NSTableView. The fist ...
Kenny's user avatar
  • 1,121
0 votes
1 answer
240 views

NSOutlineView drag-n-drop multiple items to single xml file Finder

I have a NSOutlineView with drag and drop support to reorder rows. Now I would like to add an export of the selected rows to a opml file in Finder. I've managed to set up NSFilePromiseProvider during ...
lupdidup's user avatar
  • 301
2 votes
2 answers
812 views

OSX - Get File Path from FileURL from Drag and Drop with Sandboxed application

I am Using Drag and Drop to drop a File onto my APP. Apple deprecated NSFilenamesPboardType in OSX 10.14 and suggests using NSPasteboardTypeFileURL. The URL(String) I get is: file:///.file/id=...
r.t.s.'s user avatar
  • 585
2 votes
2 answers
1k views

UICollectionView drag and drop remove translucent cell

I'm using iOS 11 drag and drop API for reordering and want to remove translucent cell which appears on start dragging. Is it possible? For dragging I use only required method of ...
nemissm's user avatar
  • 453
1 vote
0 answers
303 views

Drag & drop issue of invisible collection view cell

Updated description Please find image here. here i have used two collection view.one for question and second for option and i want to fill in the blank with option by using drag and drop. but there ...
Manish Patel's user avatar
0 votes
1 answer
280 views

NSOutlineView drag&drop (next to an item) doesn't work for complex items

My basic sample works well for item represented by standard ObjC classes. See initialisation of self.list in sample below: - (void) updateViews; { NSDictionary *firstParent = [NSDictionary ...
PerfectGamesOnline.com's user avatar
0 votes
0 answers
70 views

iOS - Choose picture from gallery or camera then crop, drag, delete or resize the picture

I'm working on an drawing project. I need to choose picture from gallery or take a picture from camera. Then user can crop the image. After that user can add the cropped picture to current DrawingView....
Kiet Nguyen's user avatar
0 votes
0 answers
147 views

OS X objective c Drag and Drop text inside textfield to change the order

I wanted separation and drag and drop of text inside NSTextfield or NSTextview. Please find sample of this in Mac System Preferences-> Language & Region -> Advanced ->Dates Screenshot attached.
Shiv Pogra's user avatar
2 votes
0 answers
276 views

NSFilePromiseReceiver returns NSURLErrorDomain -1001 "(null)" when receiving files

I've been working to update the performDragOperation method to use NSFilePromiseReceiver. However, any time I drag a file, the reader returns Error Domain=NSURLErrorDomain Code=-1001 "(null)" Here'...
Drew's user avatar
  • 21
9 votes
0 answers
2k views

UICollectionView cells appear duplicated in place after cancelled drag sessions

I’m having trouble with an obscure problem implementing local drag and drop in a UICollectionViewController. The collection view allows dragging of items into and out of folders. All looks and works ...
Derek Pollard's user avatar
0 votes
1 answer
1k views

How to register NSItemProvider for drag and drop in Objective-C?

I’m trying to implement drag and drop functionality in an Objective-C project for the iPad. The principles seem to be straight forward enough, but the examples are all in Swift and I'm simply unable ...
user9272716's user avatar
3 votes
0 answers
324 views

IOS 11 Drag'n'Drop How to drop custom file

I need to copy dropped data to my custom path. With images it's working fine. Here is the code: - (UIDropProposal *)dropInteraction:(UIDropInteraction *)interaction sessionDidUpdate:(id<...
user3226859's user avatar
1 vote
1 answer
216 views

Remove blue line while drag drop in NSTableView mac app objective c

I have implemented drag drop feature in tableview. When doing drag drop, the blue line appears by default, I want to customise/remove this blue line. This may be a possible duplicate but I could not ...
Gypsa's user avatar
  • 11.3k
0 votes
0 answers
124 views

Drag and Drop Custom TableViewCell of NSTableView

#define MyPrivateTableViewDataType @"MyPrivateTableViewDataType" //add line in your awakeFormNib method [self.tableView registerForDraggedTypes:[NSArray arrayWithObject:...
Sangram Shivankar's user avatar
1 vote
1 answer
1k views

Cannot get drag and drop to work onto NSCollectionView

There is probably a simple mistake that I'm making, but I simply cannot get dropping of files onto an NSCollectionView to work even in the most basic way. In a test project, I have an ...
fbitterlich's user avatar
0 votes
0 answers
358 views

NSView based NSTableView – strange bouncing rows for Drag and Drop with NSTableViewDraggingDestinationFeedbackStyleGap

I have a view-based instance of NSTableView for which I’ve been changing the draggingDestinationFeedbackStyle, as most NSTableView Drag and Drop questions have been updated with reference to this ...
nanzen-ji's user avatar
3 votes
0 answers
678 views

Implement drag and drop in nsviewcontroller

I'm trying to catch drag and drop event in nsviewcontroller, but draggingEntered is not called . here is my code : - (void)viewDidLoad { [self.view registerForDraggedTypes:[NSArray ...
Nininea's user avatar
  • 2,719
0 votes
0 answers
212 views

How to get subview with on NSEvent like mouse up on NSView?

I have multiple NSview with multiple subviews respectively within each NSView. I want to perform action on Drag & Drop. I could Drag view. but on Drop I want to get on exact subview dropping is ...
user3581597's user avatar
0 votes
0 answers
56 views

NSPasteboard ops working but not DnD

I have a document-based Cocoa application with bindings enabled; it's supposed to be a text-snippet manager. I'm developing in system version 10.9 with Xcode 6.2. The main document window has a split ...
daniel julian's user avatar
0 votes
1 answer
786 views

Reordering NSCollectionView with (Flow Layout)

I have a NSCollectionView, which I want to reorder. I´m using a Flow Layout, Delegate and Datasource is set to my ViewController. I have also registered my drag type but I only get the delegate call ...
Matt's user avatar
  • 448
0 votes
1 answer
69 views

I can't connect an object class file to a uitableview? ios objective-c

Hi I am trying to integrate http://www.scott-sherwood.com/tutorial/ios-5-drag-and-drop-between-uitableviews/ tutorial's function that we can drag and drop objects between two UITableViews located in a ...
Fido's user avatar
  • 216

15 30 50 per page
1
2 3 4 5
8