Red Mak
Red Mak

Reputation: 676

Allow all files type except one in NSOpenPanel

my application create a "new" type (extension) of file, let say its ".newtype", so when i want to browse files with NSOpenPanel to create it, this type of files have to be not selectable.

how can i pass ALL files type except ".newtype" to the NSOpenPanel instance ?

Upvotes: 1

Views: 385

Answers (1)

trojanfoe
trojanfoe

Reputation: 122391

Provide a delegate that handles the NSOpenSavePanelDelegate protocol panel:shouldEnableURL: method.

Upvotes: 1

Related Questions