• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Accepting files dragged from iTunes in a Cocoa app
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Accepting files dragged from iTunes in a Cocoa app


  • Subject: Re: Accepting files dragged from iTunes in a Cocoa app
  • From: "Stephen F. Booth" <email@hidden>
  • Date: Wed, 10 Sep 2008 16:55:04 -0700

Stefan,

I use the following code to get the URLs from dragged files from iTunes:

NSString * const iTunesPboardType = @"CorePasteboardFlavorType 0x6974756E";

// Handle iTunes drops
else if([bestType isEqualToString:iTunesPboardType]) {
  NSDictionary *iTunesDictionary = [[info draggingPasteboard]
propertyListForType:iTunesPboardType];
  NSArray *tracks = [iTunesDictionary valueForKey:@"Tracks"];
  NSEnumerator *enumerator = [tracks objectEnumerator];
  NSDictionary *track = nil;
  NSURL *url = nil;

  while((track = [enumerator nextObject])) {
    url = [NSURL URLWithString:[track valueForKey:@"Location"]];

    if([url isFileURL])
      ; // Do something with URL
  }
}

Stephen
_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Follow-Ups:
    • Re: Accepting files dragged from iTunes in a Cocoa app
      • From: email@hidden (Stefan Haller)
  • Prev by Date: Re: Accepting files dragged from iTunes in a Cocoa app
  • Next by Date: Re: NSTimer in main NSRunLoop v. InstallEventLoopTimer
  • Previous by thread: Re: Accepting files dragged from iTunes in a Cocoa app
  • Next by thread: Re: Accepting files dragged from iTunes in a Cocoa app
  • Index(es):
    • Date
    • Thread