根据Qt维基,这两个定义对我来说似乎非常相似。
The rcc resource compiler parses the XML and generates C/C++ code
The uic reads an XML format user interface definition (.ui) file as generated by Qt Designer and creates a corresponding C++ header file因此,它们各自获取一个xml文件并将其转换为c++。那么,你会使用其中一个而不是另一个,有什么区别呢?
(顺便说一下,我希望在QT Designer中使用pyQt (&pyrcc4?)为现有DLL创建一个简单的GUI )
谢谢!
发布于 2014-07-17 13:27:31
rcc是一个Qt资源编译器:the Qt resource system is a platform-independent mechanism for storing binary files in the application's executable.
uic是Qt用户界面编译器:it creates a corresponding C++ header file from ui file generated in Qt Designer
https://stackoverflow.com/questions/24795170
复制相似问题