Xcode - 在 ipad 上查看 DWG(矢量)文件
目前可以在 iPad 上查看 DWG 文件吗?
我正在寻找一个简单的应用程序,可以查看 CAD 绘图。 在Xcode提供的工具下可以吗?
Is viewing DWG files currently possible on iPad?
I'm looking to make a simple application that will allow viewing CAD drawings.
Is it possible under the tools provided in Xcode?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不。不确定开放设计联盟是否有其库的 iPhone 移植,但您可以检查一下。
如果没有,您可以将它们发送到网络服务器并在其中进行转换。
No. Not sure if the Open Design Alliance has iPhone ports of their library, but you can check.
If not, you can send them to a web server where you convert them.
如果问题是您希望有一个视图可以直接合并到您的 iOS 程序中,将 DWG 文件直接渲染为 UI 的一部分,那么我认为答案仍然是“不,此功能不可用”。
开放设计联盟有其库的 iOS 端口,但没有查看器。您可以使用 ODA 库生成 DWG 工程图的 PDF,并使用现有的 PDFView 直接在应用程序中查看这些 PDF。
或者,您可以按照建议,在某处的服务器上进行此转换,然后在本地查看 PDF(或 JPEG 或您决定转换为的任何内容)。
If the question is that you wish to have a View you can incorporate directly into your iOS program that renders DWG files directly as part of your UI, then I think the answer is still "no, this functionality is not available."
The Open Design Alliance has iOS ports of their library but no viewer. You could use the ODA library to generate PDFs of the DWG drawings and view those directly in your application using an existing PDFView.
Or you can, as suggested, do this conversion on a server somewhere and just handle viewing the PDF (or JPEG or whatever you decide to convert to) locally.