Re: Choosing Files Based Upon Type
Re: Choosing Files Based Upon Type
- Subject: Re: Choosing Files Based Upon Type
- From: Brant Vasilieff <email@hidden>
- Date: Mon, 18 Jun 2001 16:40:17 -0700
On Monday, June 18, 2001, at 01:34 PM, cocoa-dev-
email@hidden wrote:
While I did find this mentioned in the introductory text for the
NSOpenPanel help page, I haven't been able to figure out how to actually
implement it. All I could think of trying was
NSArray *fileTypes = [NSArray arrayWithObject:@"TEXT"];
but that resulted in the obvious - only allowing selection of items
whose extension was "TEXT."
How is this done? And, am I reading the original post correctly that
this has been available since 10.0?
NSArray* fileTypes = [NSArray
arrayWithObjects:NSFileTypeForHFSTypeCode('TEXT'), nil];
HTH,
Brant