Guest User

Untitled

a guest
Jun 22nd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. - (NSDragOperation)draggingUpdated:(id <NSDraggingInfo>)sender
  2. {
  3. NSArray *files = [[sender draggingPasteboard] propertyListForType:NSFileNamesPBoardType]
  4. for (id filename in files)
  5. {
  6.  
  7. if ([[filename pathExtension] isEqualToString:@"jpg"])
  8. return NSDragOperationCopy
  9. else
  10. return NSDragOperationNone
  11. }
  12.  
  13.  
  14. }
Add Comment
Please, Sign In to add comment