This seems like such a basic task, but I\'m stumped.
How, in Xcode, do you execute a textual search though (the XML contents of) all the .xib files in a project?
U may use this function in your bash profile:
function grep_xib {
grep -i -r --include=*.xib "$1" .
}
Then just call in terminal "grep_xib TEXT_TO_FIND". It's easier.
To create a .bash_profile on your mac follow this steps: