#warning
在OC中常用用來做標誌提示
TODOs, FIXMEs, & ERRORs In Xcode
使用New Run Script Phase
並新增以下程式碼
TAGS="TODO:|FIXME:"
ERRORTAG="ERROR:"
find "${SRCROOT}" \( -name "*.h" -or -name "*.m" -or -name "*.swift" \) -print0 | xargs -0 egrep --with-filename --line-number --only-matching "($TAGS).*\$|($ERRORTAG).*\$" | perl -p -e "s/($TAGS)/ warning: \$1/" | perl -p -e "s/($ERRORTAG)/ error: \$1/"
複製程式碼
eg:
//TODO: 這個已經做完.
//FIXME: Make this is crash.
複製程式碼