How to detect a non-standard copy of a file in Xcode 4?

I have some files that are structured (something) as follows:

MONLibrary/file.h
MONLibrary/file.support.h

I would like Xcode to recognize these files as analogues from each other, just as file.hthey file.care recognized analogues. How can I do that?

+3
source share
1 answer

This is not exactly what you need (I would like to know if there is an answer to this ...), but renaming file.support.hto file.supportwill cause it to be recognized as an analog.

It will not be treated as the default Obj-C header file for w / r / t syntax highlighting / assembly rules, but you can easily override this with the file inspector (⌘-opt-1).

+1
source

All Articles