Created
September 26, 2015 15:59
-
-
Save dhcdht/7a0e7a13c91ecf69ee18 to your computer and use it in GitHub Desktop.
脚本添加到 Xcode 的 Build Phases 中,当使用到不想要被使用的类时,会报警告。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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