从 *.xsd 模式文件自动生成 Objective-C 类
我的 XSD 架构文件非常大。
我需要从这些文件创建类,但手动这样做并不是正确的方法,因为有一些工具可以自动创建类,例如 Microsoft 工具“XSD.exe”,可以将文件转换为 C++ 类。我想在 Xcode 中使用它们,但我发现很难移植它。
有什么好工具可以生成可以在 iOS 上使用的 objcetive-c 类?
预先感谢,
阿米特
I have XSD schema files that are huge in size.
I need to create classes from these files but doing so manually is not the right way as there are some tools that create classes automatically, for e.g. Microsoft tool "XSD.exe" that converts the files into c++ classes. I wanted to use them in Xcode but I am finding it difficult to port it.
What is a good tool that can generate objcetive-c classes which can be used on iOS?
Thanks in advance,
Amit
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您生成的 C++ 符合标准(无特定于平台的扩展),则您可以只使用 C++。
If your generated C++ is standards compliant (no platform specific extensions), you can just use the C++.