On Mon, Aug 10, 2015 at 11:01 PM, Sean P. DeNigris
wrote:
> Does anyone have experience with accepting drops of file types which are not
> supported by default? On StackOverflow [1], it was shown how to do this in
> Cocoa:
> ```
> [window registerForDraggedTypes:[NSArray
> arrayWithObjects:(NSStri
Does anyone have experience with accepting drops of file types which are not
supported by default? On StackOverflow [1], it was shown how to do this in
Cocoa:
```
[window registerForDraggedTypes:[NSArray
arrayWithObjects:(NSString*)kPasteboardTypeFileURLPromise,nil]];
```
but do I really need to mo