On Nov 23, 2009, at 8:54 am, Jens Alfke wrote:

> The Cocoa Pasteboard API has the annoying limitation that there is no 
> standard, public data type for multiple URLs.
> 
This is no longer true with Mac OS X v10.6 and later -- you can write and read 
multiple URLs to and from to the pasteboard.

e.g.
    [url pasteboardPropertyListForType:(NSString *)kUTTypeURL]
and
    NSArray *newURLs = [pasteboard readObjectsForClasses:
                                        [NSArray arrayWithObject:[NSURL class]]
                                   options:[NSDictionary dictionary]];

mmalc

_______________________________________________

Cocoa-dev mailing list ([email protected])

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:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to