1. 程式人生 > >Xcode註釋轉文檔appledoc使用

Xcode註釋轉文檔appledoc使用

pro -name version put 命令 appledoc hub clas --

參考了一些大神的方法總算成功了記錄一下少走彎路

1:安裝appledoc

使用終端下載:

命令行:

git clone git://github.com/tomaz/appledoc.git

cd ./appledoc

sudo sh install-appledoc.sh

查看是否安裝成功:

命令行:

appledoc --version

appledoc version: 2.2.1 (build 1334)

2 cd 進入工程目錄 (目錄下的所有文件都會被使用)

appledoc --no-create-docset --output ./doc --project-name 工程名 --project-company "公司名" --company-id "公司id" . //註意空格後加.

遇到的問題** Assertion failure in +[GBMethodData methodDataWithType:result:arguments:], /Users/../Desktop/911doc/appledoc/Model/GBMethodData.m:44

解決方法

打開appledoc工程GBMethodData.m
此處代碼以及解決方法:

+ (id)methodDataWithType:(GBMethodType)type result:(NSArray *)result arguments:(NSArray *)arguments {
//NSParameterAssert([arguments count] >= 1); //註釋掉斷言
return [[self alloc] initWithType:type attributes:[NSArray array] result:result arguments:arguments];
}

//重新執行安裝腳本,強行走下去

cd ./appledoc

sudo sh install-appledoc.sh

然後重新編譯

Xcode註釋轉文檔appledoc使用