Skip to content

Instantly share code, notes, and snippets.

@dhcdht
Created September 26, 2015 15:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dhcdht/7a0e7a13c91ecf69ee18 to your computer and use it in GitHub Desktop.
Save dhcdht/7a0e7a13c91ecf69ee18 to your computer and use it in GitHub Desktop.
脚本添加到 Xcode 的 Build Phases 中,当使用到不想要被使用的类时,会报警告。
DeprecatedClasses=("UITableView" "UILabel")
ClassesString=${DeprecatedClasses[*]}
SearchString=${ClassesString// /|}
find "${SRCROOT}" \( -name "*.m" \) -print0 |
xargs -0 egrep --with-filename --line-number --only-matching "($SearchString).*\$" |
perl -p -e "s/($SearchString)/ warning: Use deprecated Class \$1\n/"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment