PyObjC:如何创建一个没有 nib 文件的简单虚拟应用程序
由于各种原因,我不能/不想使用 NIB 文件(或任何其他外部资源)。
如何使用 PyObjC(即使用纯 Python 代码)创建一个简单的虚拟应用程序(例如一些简单的菜单、一些空窗口)?
For various reasons, I cannot/want not use a NIB-file (or any other external resources).
How can I create a simple dummy app (e.g. some simple menu, some empty window) with PyObjC, i.e. with pure Python code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个非常有用的示例代码介绍是 Lethain 上的 PyObjC 和 Cocoa 简介.com 以及一些示例代码 此处(以及相关文件)。
我现在也有一个自己的项目(一个 音乐播放器),我在其中动态构建整个 Cocoa GUI 。该部分的主要代码在此处。
One very helpful introduction with sample code was the Introduction to PyObjC and Cocoa on lethain.com with some sample code here (and related files).
I also have an own project now (a music player) where I construct the whole Cocoa GUI dynamically. The main code of that part is here.