如何在 Mac 上打开图像
在我的应用程序中,我希望用户能够单击按钮浏览文件或将其拖放到应用程序中并让它打开图像。我该怎么做?哪种方法最简单或者您推荐哪种方法?
In my app I want the user to either be able to click a button browse for a file or drag and drop it into the application and have it open the image. How can I do this? Which method would be easiest or do you recommend?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NSOpenPanel 的文件,并指定允许的类型
子类 NSDocument,并将文档类型与图像 mime-type 相关联;此关联是在您的应用程序的 plist 资源中建立的。
除非您有特殊需求,否则可以使用 CGImage 和/或 NSImage api 来打开图像。
use NSOpenPanel, and specify the allowed types
subclass NSDocument, and associate the document type with the image mime-type; this association is made in your app's plist resource.
unless you have special needs, you can use CGImage and/or NSImage apis to open the image.