33
33

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CocoaPodsで入れたライブラリのドキュメントをDashで見る

Last updated at Posted at 2013-02-24
  • AppleDocを入れる
  • pod installする
  • DashのPreference→Docsets→でリロードすると、ドキュメントが出てくる

はじめに

XCodeの標準ドキュメントビュアーよりも軽くて速いDashを使ってます。これ動作が軽いので重宝しています。

一方CocoaPodsを使ってライブラリを組み込んだりしてますが、このライブラリのドキュメントも検索させたかったのでやってみました。簡単でした。

AppleDocを入れる

まずはAppleDocを入れます。今回初めてHomeBrewを使ってみました。

macmini% brew install appledoc 
Warning: It appears you have MacPorts or Fink installed.
Software installed with other package managers causes known problems for
Homebrew. If a formula fails to build, uninstall MacPorts/Fink and try again.
==> Downloading https://github.com/tomaz/appledoc/tarball/v2.1
Already downloaded: /Library/Caches/Homebrew/appledoc-2.1.tgz
==> xcodebuild -project appledoc.xcodeproj -target appledoc -configuration Release clean install SYMROOT=build DSTROOT=b
 /usr/local/Cellar/appledoc/2.1: 17 files, 900K, built in 13 seconds
macmini% 

MacPortsが入ってるので怒られてますが気にしません。
homebrewは"自家製ビール"ということらしいので、ターミナルにビールが出てきたりします。おちゃめですね。

pod installする

appledocがインストールされていると、pod install時にドキュメントが生成され、~/Library/Developer/Shared/Documentation/DocSets/以下に配置されます。

macmini% pwd
/Users/tak/Library/Developer/Shared/Documentation/DocSets
macmini% ls -la
total 0
drwxr-xr-x  8 tak  staff  272  2 24 18:20 .
drwxr-xr-x  3 tak  staff  102 11  4 00:02 ..
drwxr-xr-x  3 tak  staff  102 11  4 00:21 com.apple.ADC_Reference_Library.DeveloperTools.4_5.docset
drwxr-xr-x  3 tak  staff  102 11  4 00:50 com.apple.adc.documentation.AppleOSX10_8.CoreReference.docset
drwxr-xr-x  3 tak  staff  102 11  4 00:37 com.apple.adc.documentation.AppleiOS6.0.iOSLibrary.docset
drwxr-xr-x  3 tak  staff  102  9 26 21:32 org.cocoapods.CocoaLumberjack-1.6.docset
drwxr-xr-x  3 tak  staff  102  9 26 21:32 org.cocoapods.libffi-3.0.11.docset
drwxr-xr-x  3 tak  staff  102  9 26 21:32 us.pandamonia.BlocksKit-1.8.1.docset
macmini% 

DashのPreference→Docsets→でリロード

Dashの環境設定の「DocsSets」でリロードすると、上で生成されたDocsSetを見れるようになります。

33
33
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
33
33

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?