xcodeプロジェクトで作業するためにappcodeを使用しています。プロジェクト内のすべてのソースファイルで特定のキーワードを検索するにはどうすればよいですか?キーワードはメソッドである必要はありません。何かのようなもの:
grep keyword *.m *.h
ありがとう。
xcodeプロジェクトで作業するためにappcodeを使用しています。プロジェクト内のすべてのソースファイルで特定のキーワードを検索するにはどうすればよいですか?キーワードはメソッドである必要はありません。何かのようなもの:
grep keyword *.m *.h
ありがとう。
To perform a search across all the project files in the AppCode use Edit
| Find
| Find in Path. In the Text to find
field put your keyword, in the File 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.