According to NSPasteboard.h (line 294 in the standard Snow Leopard copy of the Xcode SDK) it states:

/* Use of pboard types should be replaced with use of UTIs.
Pboard types will be deprecated in a future release. */

I've tried finding samples of using UTIs as a replacement for pboard types but I can't find anything anywhere that demonstrates how to do this.

Does anyone have any sample code showing how to replace pboard types with UTIs?

Thanks

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

You just use UTIs where previously you would have used pboard types.

For more on UTIs, see Uniform Type Identifiers Overview.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.