在 Objective-C 中设置文件对话框的文件扩展名
我想知道如何设置文件对话框的文件扩展名,以便只有具有该扩展名的文件才会显示在文件夹中。我知道有一种方法可以设置是否可以看到文件/目录以及文件对话框查找的文件夹,但还没有找到设置文件扩展名的方法。有什么建议吗?
I was wondering how to set the file extension for a file dialog so that only those files with that extension show up in the folder. I know there is a way to set if files/directories can be seen, and the folder that the file dialog looks in, but haven't come across a way to set the file extension. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 NSOpenPanel/NSSavePanel 方法
setAllowedFileTypes:
。 OS X 考虑的是文件类型,而不是扩展名。Use the NSOpenPanel/NSSavePanel method
setAllowedFileTypes:
. OS X thinks in terms of file types, not extensions.