Currently I\'m working on an iOS based Image Manipulation task.
I\'m working on different modules. So If I need to add something in a module in fu
With the script below your can see all required tags like warnings.
Add below script to "Run Script"
The script:
KEYWORDS="TODO:|FIXME:|DevTeam:|XXX:"
find "${SRCROOT}" \( -name "*.h" -or -name "*.m" -or -name "*.swift" \) -print0 | xargs -0 egrep --with-filename --line-number --only-matching "($KEYWORDS).*\$" | perl -p -e "s/($KEYWORDS)/ warning: \$1/"
Original answer was taken from Here
Another alternative is XToDo plugin for Xcode.