I am using appcode to work on an xcode project. How do I search all source files in my project for a given keyword? The keyword need not be a method. Something like:
grep keyword *.m *.h
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To perform a search across all the project files in the AppCode use
Edit|Find| Find in Path. In theText to findfield put your keyword, in theFile mask(s)field put the extensions separated by comma:Note that the scope is set to the
Whole project, you can limit it if needed.