如何在 Windows 和 Mac OS X 中访问 iTunes 资料库
我想知道如何以多平台方式访问 iTunes 库信息。我想制作一个可以在 Windows 和 Mac OS X 上运行的程序。您推荐哪种编程语言、API?考虑到该程序需要 GUI。
I would like to know how can I access to the iTunes Library information in multi-plataform way. I want to make a program that can run in both Windows and Mac OS X. Which programming language, API do you recommend? Take into account that this program will need a GUI.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以尝试使用QT,它是跨平台的。
还有一种叫做 Cocotron 的东西,它允许您将 Cocoa 应用程序移植到其他平台。基本上,Cocotron 只是一个定制的 AppKit 和 Foundation,它可以在 Windows、Linux 和 Mac 上运行。
QT 与 C++ 一起工作,Cocotron 显然与 Objective-C/Objective-C++ 一起工作。
这里的QT:
http://qt.nokia.com/products/
Cocotron 在这里:
http://www.cocotron.org/
如果您想了解更多有关可能的内部结构的信息,Cocotron 真的很酷很多 Apple 的 obj-c 类。
You could try using QT, which is cross platform.
Also there is something called the Cocotron, which allows you to port Cocoa apps to other platforms. Basically Cocotron is just a custom made AppKit and Foundation, which runs on both windows linux and mac.
QT works with C++, Cocotron with objective-c/objective-c++ obviously.
QT here:
http://qt.nokia.com/products/
Cocotron here:
http://www.cocotron.org/
Cocotron is really cool if you wanna know more about the possible internals of a lot of Apple's obj-c classes.