由于我不知道的原因,Xcode无法从服务器下载文档集。
有没有办法从URL手动下载这些文档集,然后让Xcode的核心参考库解压缩它们?
编辑:
找到我要找的东西:
http://learning2code.blogspot.com/2008/05/download-xcode-docsets-to-your-hard.html
答案 0 :(得分:7)
对于Xcode 7.0和更新的版本,您应该按照以下步骤手动下载和安装文档集:
例如以下内容:
<!-- START iOS 9 doc set -->
<dict>
<key>fileSize</key>
<integer>1065107366</integer>
<key>identifier</key>
<string>com.apple.adc.documentation.iOS</string>
<key>name</key>
<string>iOS 9.0 Documentation</string>
<key>source</key>
<string>https://devimages.apple.com.edgekey.net/docsets/20150916/031-34987-A.dmg</string>
<key>userInfo</key>
<dict>
<key>ActivationPredicate</key>
<string>$XCODE_VERSION >= '7.0' && $XCODE_VERSION < '7.1'</string>
<key>Category</key>
<string>Documentation</string>
<key>IconType</key>
<string>IDEDownloadablesTypeDocSet</string>
<key>InstallPrefix</key>
<string>$(HOME)/Library/Developer/Shared/Documentation/DocSets</string>
<key>InstalledIfAllReceiptsArePresentOrNewer</key>
<dict>
<key>com.apple.pkg.7.0.iOSDocset</key>
<string>10.9.0.0.1.1442278660</string>
</dict>
<key>RequiresADCAuthentication</key>
<false/>
<key>Summary</key>
<string>My description of content</string>
</dict>
<key>version</key>
<string>90.9</string>
</dict>
<!-- END iOS 9 doc set -->
从source
字符串下载文件。在我们的示例中:https://devimages.apple.com.edgekey.net/docsets/20150916/031-34987-A.dmg
使用以下结构重命名下载的文件:
"identifier string" + "-" + "version string" + ".dmg"
在我们的示例中:
com.apple.adc.documentation.iOS-90.9.dmg
~/Library/Caches/com.apple.dt.Xcode/Downloads/
如果没有Download
文件夹,请创建它
我建议您删除所有.dvtdownloadableindex
扩展名的文件(如果存在)。
InstallPrefix
字符串文件夹并删除与存在相关的文档集(如果存在)。在我们的示例中,文件夹为$(HOME)/Library/Developer/Shared/Documentation/DocSets
,引用~/Library/Developer/Shared/Documentation/DocSets.
然后从那里删除com.apple.adc.documentation.iOS.docset
文件。
(在某些情况下,$(DEVELOPER)
是指/Applications/Xcode.app/Contents/Developer
)。
答案 1 :(得分:4)
增加在此接受的答案中提到的博客文章,因为其评论已经结束:
每个操作系统版本都有一个单独的Feed。您可以在http://developer.apple.com/rss/com.apple.adc.documentation.AppleSnowLeopard.atom
上关注Snow Leopard文档找到这些网址的一种方法是点击Xcode首选项中每个DocSet的小“i”信息图标 - &gt;文档 - &gt;文档集。
答案 2 :(得分:1)
如果您尝试下载iPhone文档,则可能使用的是无法访问文档的帐户。
使用Keychain Access,删除'connect.apple.com'条目,然后尝试下载文档并输入您的iPhone注册帐户信息。 - 罗纳德·海登,Cocoabuilder Xcode Archive
答案 3 :(得分:1)