缺少用于将 core-plot 文档安装到 xCode 中的 com.CorePlot.Framework.docset 包
我对 Objective-C 和 iOS 编程都很陌生。我正在使用 core-plot 创建一些图表,并希望访问一些可能有助于解释给出的示例的文档。
自述文件说,为了安装文档,我必须:
退出 Xcode
将 com.CorePlot.Framework.docset 包复制到 ~/Library/Developer/Shared/Documentation/DocSets/
启动 Xcode,并在文档浏览器中浏览 Core Plot 文档
这看起来很简单,但我我在查找“CorePlot.Framework.docset”包时遇到问题。也许我错过了一些简单的事情?
谢谢。
I am very new to both Objective-C and iOS programming. I am working my way through creating some graphs using core-plot and want to access some documentation that might help explain the examples given.
The readme file says in order to install the documentation I must:
Quit Xcode
Copy the com.CorePlot.Framework.docset bundle into ~/Library/Developer/Shared/Documentation/DocSets/
Launch Xcode, and browse Core Plot documentation in the Documentation browser
This looks easy but I am having a problem locating the "CorePlot.Framework.docset" bundle. Perhaps I am missing something simple?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用的是发行包之一还是从源代码构建?
如果您使用的是没有安装程序的发行包,则解压缩存档后,文档集位于“CorePlot xxx/Documentation”中。
如果您使用安装程序,它应该已将文档集放在正确的位置。
如果您从源代码构建,请按照此处的说明安装 Doxygen和 Graphviz。打开 CorePlot-CocoaTouch 项目并构建 Documentation 目标。构建脚本将自动安装文档集。
埃里克
Are you using one of the release packages or building from source?
If you're using a release package without the installer, the docset is in "CorePlot x.x.x/Documentation" after unzipping the archive.
If you're using the installer, it should have placed the docset in the right place.
If you're building from source, follow the instructions here to install Doxygen and Graphviz. Open the CorePlot-CocoaTouch project and build the Documentation target. The build script will install the docset automatically.
Eric