下载Xcode文档的方法有两个:
1. 自动下载:到在Xcode的Preserences中Downloads页面的Documentation,点击对应文档的下载。
2. 手动下载:到这个页面:https://developer.apple.com/library/downloads/docset-index.dvtdownloadableindex
手动搜索要下载的内容。当然可以自己写一个解析脚本去获得下载信息。
下载后获得dmg文件,载入后执行pkg按向导安装。全部安装完成后,到 / 目录将所有 .docset 移动到
~/Library/Developer/Shared/Documentation/DocSets
移动到~/Library/.../DocSets后,Dash需要重新扫描来更新和优化文档。
Xcode文档的位置有两个:
/Applications/Xcode.app/Contents/Developer/Documentation/DocSets
~/Library/Developer/Shared/Documentation/DocSets
若将Xcode.app中的DocSets链接到~/Library/.../DocSets中:
ln -sv /Applications/Xcode.app/Contents/Developer/Documentation/DocSets/* ~/Library/Developer/Shared/Documentation/DocSets/
ln命令简单说明:
ln [-Ffhinsv] source_file [target_file]
ln [-Ffhinsv] source_file ... target_dir
link source_file target_file
-s: 建立一个符号链接
-v: 显示详细信息
-f: 如果目标文件已存在,将被替换
-i: 如果目标文件已存在,将询问是否替换
下载文档缓存的位置是:
~/Library/Caches/com.apple.dt.Xcode/Downloads
可以删除其中的文件释放出存储空间。