/* Methods that were deprecated in Mac OS 10.5. You can now use
+textTypes and +textUnfilteredTypes to get arrays of Uniform Type
Identifiers (UTIs).
*/
+ (NSArray *)textFileTypes
AVAILABLE_MAC_OS_X_VERSION_10_1_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_5;
+ (NSArray *)textPasteboardTypes
AVAILABLE_MAC_OS_X_VERSION_10_1_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_5;
+ (NSArray *)textUnfilteredFileTypes
AVAILABLE_MAC_OS_X_VERSION_10_1_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_5;
+ (NSArray *)textUnfilteredPasteboardTypes
AVAILABLE_MAC_OS_X_VERSION_10_1_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_5;

-Ken

On Wed, Oct 8, 2008 at 7:33 PM, Ben Lachman <[EMAIL PROTECTED]> wrote:
> Thanks Jim.  Not sure how I missed that, its exactly what I was looking for.
>  Unfortunately it's deprecated in 10.5.  Know what the advised API to
> transition to is?
>
> ->Ben
> --
> Ben Lachman
> Acacia Tree Software
>
> http://acaciatreesoftware.com
>
> email: [EMAIL PROTECTED]
> twitter: @benlachman
> mobile: 740.590.0009
>
>
>
>
> On Oct 8, 2008, at 6:08 PM, Jim Correia wrote:
>
>> On Oct 8, 2008, at 5:46 PM, Ben Lachman wrote:
>>
>>> I have an open panel that I'd like to handle text a little more fluidly.
>>>  At the moment I call runModalForTypes with an array composed of my best
>>> guesses at what NSMutableAttributedString can figure out in its
>>> readFromData:... method.  However I'm wondering if there is some way of
>>> getting a list of file types that are supported at run time instead of me
>>> hardcoding it.  Any Ideas?
>>
>> On NSAttributedString:
>>
>> /* Methods to determine what types can be loaded as NSAttributedStrings
>> */
>> + (NSArray *)textUnfilteredFileTypes;
>> + (NSArray *)textUnfilteredPasteboardTypes;
>> + (NSArray *)textFileTypes;
>> + (NSArray *)textPasteboardTypes;
>>
>> Jim
>
> _______________________________________________
>
> Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
>
> 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/kenferry%40gmail.com
>
> This email sent to [EMAIL PROTECTED]
>
_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

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