xcode中oc代码文档生成

1.下载并安装appledoc (可以使用brew)

$ xcodebuild -showsdks
$ sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer/
$ xcrun --sdk iphoneos --show-sdk-path

$ git clone git://github.com/tomaz/appledoc.git
$ cd ./appledoc
$ sudo sh install-appledoc.sh

提示:

** INSTALL SUCCEEDED **

install: /usr/local/bin/: No such file or directory

1.安装appledoc

1.安装brew
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

2.安装 appledoc
$ brew install appledoc

2.查看是否安装成功

$ appledoc --version
$ appledoc --help

3.生成文档方式

在xcode中新建target–>Aggregate–>Build Phases–>Run Script


#appledoc Xcode script
# Start constants
company="chenl";
companyID="com.chenl.test";
companyURL="http://blog.csdn.net/coooliang";
target="iphoneos";
#target="macosx";
outputPath="./doc";
# End constants
/usr/local/bin/appledoc \
--project-name "${PROJECT_NAME}" \
--project-company "${company}" \
--company-id "${companyID}" \
--docset-atom-filename "${company}.atom" \
--docset-feed-url "${companyURL}/${company}/%DOCSETATOMFILENAME" \
--docset-package-url "${companyURL}/${company}/%DOCSETPACKAGEFILENAME" \
--docset-fallback-url "${companyURL}/${company}" \
--no-create-docset \
--output "${outputPath}" \
--docset-platform-family "${target}" \
--logformat xcode \
--keep-intermediate-files \
--no-repeat-first-par \
--no-warn-invalid-crossref \
--exit-threshold 2 \
"${PROJECT_DIR}"

这里写图片描述

这里写图片描述

猜你喜欢

转载自blog.csdn.net/cl61917380/article/details/81588930
今日推荐