我無法停止Xcode中的文檔,因爲我的網絡,所以我從https://developer.apple.com/library/downloads/docset-index.dvtdownloadableindex下載並安裝。 但它沒有工作。我移動文件com.apple.adc.documentation.OSX.docset似乎〜/庫/開發/共享/文檔,但它仍然工作如何通過dmg文件安裝Xcode文檔
0
A
回答
2
我找到了一種方法來安裝它們。它工作正常,在Xcode 7.0:
- 首先,你應該找到在以下鏈接你的正確項: https://developer.apple.com/library/downloads/docset-index.dvtdownloadableindex
例如以下:
<!-- 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
字符串下載文件。在我們的例子:使用以下結構重命名下載的文件
com.apple.adc.documentation.iOS-90.9.dmg
- 然後將其置於:
~/Library/Caches/com.apple.dt.Xcode/Downloads/
- 轉至
InstallPrefix
字符串文件夾並刪除存在相關docset(如果存在)。 - 打開Xcode,進入偏好...。在「下載」選項卡中,只需單擊文檔的下載箭頭即可。您會發現Xcode只是傳遞下載進度並安裝文檔。
"identifier string" + "-" + "version string" + ".dmg"
在我們的例子:https://devimages.apple.com.edgekey.net/docsets/20150916/031-34987-A.dmg
我建議您刪除.dvtdownloadableindex
擴展名(如果有的話)的所有文件。
在我們的例子中,文件夾是$(HOME)/Library/Developer/Shared/Documentation/DocSets
是指~/Library/Developer/Shared/Documentation/DocSets.
然後從那裏取出com.apple.adc.documentation.iOS.docset
文件。
(在某些情況下,$(DEVELOPER)
指的是/Applications/Xcode.app/Contents/Developer
)。
相關問題
- 1. 如何卸載python3 DMG安裝程序安裝的文件?
- 2. 如何防止Xcode安裝iOS文檔?
- 3. Xcode安裝文檔問題
- 4. 如何下載xcode dmg文件?
- 5. xcode下載爲.dmg文件
- 6. 通過brew和dmg安裝cuda
- 7. 安裝加密DMG通過終端
- 8. 如何通過HTTP安裝gem文件?
- 9. 如何創建拖放DMG文件,Mac安裝程序
- 10. 如何從命令行安裝DMG文件?
- 11. 在Xcode 4.4上安裝iOS 4文檔
- 12. 將OpenGL ES文檔安裝到Xcode中?
- 13. 如何安裝Pdf文檔到郵件
- 14. 如何通過xcode「進行安裝」?
- 15. 如何創建DMG文件?
- 16. 安裝mobileprovision文件 - Xcode 6
- 17. 如何通過PHP/readfile提供.dmg文件?
- 18. 軟件安裝文檔
- 19. Xcode 4.5 - 無法通過iTunes安裝開發人員.ipa文件
- 20. 通過joomla組件安裝sql文件
- 21. 如何將cocos2D的文檔安裝到我的Xcode幫助中
- 22. 如何獲取安裝在Xcode 5中的文檔集?
- 23. 通過PEAR安裝完成文件
- 24. 通過nssm安裝jar文件
- 25. 通過npm安裝的@import susy文件
- 26. 通過.BAT文件安裝UCM 10g
- 27. 通過ZIP文件安裝SDK
- 28. 通過webkit安裝iphone配置文件
- 29. 在vmware中安裝mac osx el capitan與.dmg後綴文件
- 30. 使用$ HOME/Application文件夾創建dmg安裝程序
謝謝,工作完美! – phatmann 2015-11-16 11:55:28