Xcode註釋轉文件appledoc使用
參考了一些大神的方法總算成功了記錄一下少走彎路
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
然後重新編譯