标签:xcode
// TODO:标识将来要完成的内容;
// FIXME:标识以后要修正或完善的内容。
// ???: 疑问的地方
/// !!!: 需要注意的地方
以上四个提示xcode已经支持。
添加自定义的标识,并在编译时,在warning中显示出来;
target-->build phases-->editor-->add run script build phases
把下面的代码粘贴到shell框中
KEYWORDS="TODO:|FIXME:|???:|!!!:|XXX:"
find "${SRCROOT}" \( -name "*.h" -or -name "*.m" \) -print0 | xargs -0 egrep --with-filename --line-number --only-matching "($KEYWORDS).*\$" | perl -p -e "s/($KEYWORDS)/ warning: \$1/"
参考:
http://iosdevelopertips.com/xcode/xcode-fixme-and-todo.html
https://coderwall.com/p/bfd0dq/xcode-view-todo-fixme-custom-tags-as-warning
xcode中查看 TODO, FIXME, 自定义标签等警告
标签:xcode
原文地址:http://blog.csdn.net/yanglishuan/article/details/42405259